pyagent-all 0.2.0__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.
@@ -0,0 +1,45 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ *.egg
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ .eggs/
11
+ *.whl
12
+
13
+ # uv
14
+ .uv/
15
+ .venv/
16
+ uv.lock
17
+
18
+ # Environments
19
+ .env
20
+ .envrc
21
+ *.env
22
+
23
+ # Testing
24
+ .pytest_cache/
25
+ .coverage
26
+ htmlcov/
27
+ .tox/
28
+
29
+ # Type checking
30
+ .mypy_cache/
31
+ .dmypy.json
32
+
33
+ # Docs
34
+ site/
35
+ .mkdocs_temp/
36
+
37
+ # Editors
38
+ .vscode/
39
+ .idea/
40
+ *.swp
41
+ *.swo
42
+
43
+ # OS
44
+ .DS_Store
45
+ Thumbs.db
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyagent-all
3
+ Version: 0.2.0
4
+ Summary: Meta-package: installs all PyAgent packages (patterns, router, compress, trace)
5
+ Project-URL: Homepage, https://github.com/pyagent-core/pyagent
6
+ Project-URL: Source, https://github.com/pyagent-core/pyagent/tree/main/packages/pyagent-all
7
+ Project-URL: Documentation, https://pyagent-core.github.io/pyagent
8
+ Project-URL: Issues, https://github.com/pyagent-core/pyagent/issues
9
+ Project-URL: Changelog, https://github.com/pyagent-core/pyagent/blob/main/CHANGELOG.md
10
+ Author: PyAgent Contributors
11
+ License: MIT
12
+ Keywords: LLM,agents,multi-agent,orchestration,patterns
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: pyagent-compress>=0.1.0
23
+ Requires-Dist: pyagent-patterns>=0.1.0
24
+ Requires-Dist: pyagent-router>=0.1.0
25
+ Requires-Dist: pyagent-trace>=0.1.0
26
+ Provides-Extra: dev
27
+ Requires-Dist: mypy>=1.10; extra == 'dev'
28
+ Requires-Dist: pytest>=8.0; extra == 'dev'
29
+ Requires-Dist: ruff>=0.5; extra == 'dev'
30
+ Description-Content-Type: text/markdown
31
+
32
+ # pyagent-all
33
+
34
+ Meta-package that installs the complete PyAgent suite:
35
+
36
+ - **pyagent-patterns** — 18 reusable multi-agent orchestration patterns
37
+ - **pyagent-router** — Difficulty-aware model routing and cost estimation
38
+ - **pyagent-compress** — Inter-agent message compression and token budgets
39
+ - **pyagent-trace** — Pattern-aware OpenTelemetry tracing and cost tracking
40
+
41
+ ## Install
42
+
43
+ ```bash
44
+ pip install pyagent-all
45
+ ```
46
+
47
+ ## Documentation
48
+
49
+ See [pyagent.dev](https://pyagent.dev) for full docs.
@@ -0,0 +1,18 @@
1
+ # pyagent-all
2
+
3
+ Meta-package that installs the complete PyAgent suite:
4
+
5
+ - **pyagent-patterns** — 18 reusable multi-agent orchestration patterns
6
+ - **pyagent-router** — Difficulty-aware model routing and cost estimation
7
+ - **pyagent-compress** — Inter-agent message compression and token budgets
8
+ - **pyagent-trace** — Pattern-aware OpenTelemetry tracing and cost tracking
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ pip install pyagent-all
14
+ ```
15
+
16
+ ## Documentation
17
+
18
+ See [pyagent.dev](https://pyagent.dev) for full docs.
@@ -0,0 +1,45 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pyagent-all"
7
+ version = "0.2.0"
8
+ description = "Meta-package: installs all PyAgent packages (patterns, router, compress, trace)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = {text = "MIT"}
12
+ keywords = ["agents", "multi-agent", "LLM", "patterns", "orchestration"]
13
+ classifiers = [
14
+ "Development Status :: 3 - Alpha",
15
+ "Intended Audience :: Developers",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
21
+ "Typing :: Typed",
22
+ ]
23
+ authors = [
24
+ {name = "PyAgent Contributors"},
25
+ ]
26
+ dependencies = [
27
+ "pyagent-patterns>=0.1.0",
28
+ "pyagent-router>=0.1.0",
29
+ "pyagent-compress>=0.1.0",
30
+ "pyagent-trace>=0.1.0",
31
+ ]
32
+
33
+ [project.urls]
34
+ Homepage = "https://github.com/pyagent-core/pyagent"
35
+ Source = "https://github.com/pyagent-core/pyagent/tree/main/packages/pyagent-all"
36
+ Documentation = "https://pyagent-core.github.io/pyagent"
37
+ Issues = "https://github.com/pyagent-core/pyagent/issues"
38
+ Changelog = "https://github.com/pyagent-core/pyagent/blob/main/CHANGELOG.md"
39
+
40
+ [project.optional-dependencies]
41
+ dev = ["pytest>=8.0", "ruff>=0.5", "mypy>=1.10"]
42
+
43
+ [tool.hatch.build.targets.wheel]
44
+ packages = ["src/pyagent_all"]
45
+ dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "ruff>=0.5", "mypy>=1.10"]
@@ -0,0 +1,3 @@
1
+ """Meta-package: installs all PyAgent packages."""
2
+
3
+ __version__ = "0.2.0"