40 lines
776 B
TOML
40 lines
776 B
TOML
[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"]
|