multi-agent-platform-server 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- multi_agent_platform_server-0.3.1/PKG-INFO +18 -0
- multi_agent_platform_server-0.3.1/multi_agent_platform_server.egg-info/PKG-INFO +18 -0
- multi_agent_platform_server-0.3.1/multi_agent_platform_server.egg-info/SOURCES.txt +6 -0
- multi_agent_platform_server-0.3.1/multi_agent_platform_server.egg-info/dependency_links.txt +1 -0
- multi_agent_platform_server-0.3.1/multi_agent_platform_server.egg-info/requires.txt +1 -0
- multi_agent_platform_server-0.3.1/multi_agent_platform_server.egg-info/top_level.txt +1 -0
- multi_agent_platform_server-0.3.1/pyproject.toml +33 -0
- multi_agent_platform_server-0.3.1/setup.cfg +4 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: multi-agent-platform-server
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Meta-package: Multi-Agent Platform CLI + server dependencies
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/quantaeye/multi-agent-platform
|
|
7
|
+
Project-URL: Documentation, https://github.com/quantaeye/multi-agent-platform/tree/main/docs
|
|
8
|
+
Project-URL: Repository, https://github.com/quantaeye/multi-agent-platform
|
|
9
|
+
Project-URL: Issues, https://github.com/quantaeye/multi-agent-platform/issues
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Requires-Dist: multi-agent-platform[server]>=0.3.1
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: multi-agent-platform-server
|
|
3
|
+
Version: 0.3.1
|
|
4
|
+
Summary: Meta-package: Multi-Agent Platform CLI + server dependencies
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Project-URL: Homepage, https://github.com/quantaeye/multi-agent-platform
|
|
7
|
+
Project-URL: Documentation, https://github.com/quantaeye/multi-agent-platform/tree/main/docs
|
|
8
|
+
Project-URL: Repository, https://github.com/quantaeye/multi-agent-platform
|
|
9
|
+
Project-URL: Issues, https://github.com/quantaeye/multi-agent-platform/issues
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
+
Classifier: Operating System :: OS Independent
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Requires-Dist: multi-agent-platform[server]>=0.3.1
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
pyproject.toml
|
|
2
|
+
multi_agent_platform_server.egg-info/PKG-INFO
|
|
3
|
+
multi_agent_platform_server.egg-info/SOURCES.txt
|
|
4
|
+
multi_agent_platform_server.egg-info/dependency_links.txt
|
|
5
|
+
multi_agent_platform_server.egg-info/requires.txt
|
|
6
|
+
multi_agent_platform_server.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
multi-agent-platform[server]>=0.3.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "multi-agent-platform-server"
|
|
3
|
+
version = "0.3.1"
|
|
4
|
+
description = "Meta-package: Multi-Agent Platform CLI + server dependencies"
|
|
5
|
+
license = "MIT"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
classifiers = [
|
|
8
|
+
"Development Status :: 4 - Beta",
|
|
9
|
+
"Intended Audience :: Developers",
|
|
10
|
+
"Programming Language :: Python :: 3.10",
|
|
11
|
+
"Programming Language :: Python :: 3.11",
|
|
12
|
+
"Programming Language :: Python :: 3.12",
|
|
13
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
]
|
|
16
|
+
# Meta-package: 仅依赖 multi-agent-platform[server],自动拉入 CLI + server 全部依赖。
|
|
17
|
+
dependencies = [
|
|
18
|
+
"multi-agent-platform[server]>=0.3.1",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/quantaeye/multi-agent-platform"
|
|
23
|
+
Documentation = "https://github.com/quantaeye/multi-agent-platform/tree/main/docs"
|
|
24
|
+
Repository = "https://github.com/quantaeye/multi-agent-platform"
|
|
25
|
+
Issues = "https://github.com/quantaeye/multi-agent-platform/issues"
|
|
26
|
+
|
|
27
|
+
[build-system]
|
|
28
|
+
requires = ["setuptools>=75.0"]
|
|
29
|
+
build-backend = "setuptools.build_meta"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools]
|
|
32
|
+
# Meta-package: 无源码,仅发布元数据。
|
|
33
|
+
packages = []
|