initial a2a-pack

This commit is contained in:
robert
2026-05-08 21:59:51 -03:00
commit b6f6cd1643
29 changed files with 3218 additions and 0 deletions

39
pyproject.toml Normal file
View File

@@ -0,0 +1,39 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "a2a-pack"
version = "0.1.0"
description = "Developer SDK + CLI for building, packaging, and deploying A2A agents"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.6",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"typer>=0.12",
"rich>=13",
"PyYAML>=6",
"jinja2>=3",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-asyncio>=0.23",
"httpx>=0.27",
]
[project.scripts]
a2a = "a2a_pack.cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["a2a_pack"]
[tool.hatch.build.targets.wheel.shared-data]
"a2a_pack/cli/templates" = "a2a_pack/cli/templates"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]