a2a-metatrace / pyproject.toml
dangoldbj's picture
release v1
d38477a verified
Raw
History Blame Contribute Delete
1.08 kB
[project]
name = "a2a-metatrace"
version = "0.1.0"
description = "A2A-MetaTrace: a labeled, metadata-only corpus of multi-agent A2A workflow traffic, built from real a2a-sdk agents. Generation harness + HuggingFace-style dataset export."
readme = "README.md"
authors = [
{ name = "Bijaya Dangol", email = "dangoldbj23@gmail.com" }
]
requires-python = ">=3.13"
dependencies = [
# generation: real A2A servers + clients, optional real-LLM agents
"a2a-sdk>=1.1.0",
"httpx>=0.28.1",
"sse-starlette>=3.4.4",
"starlette>=1.2.1",
"uvicorn>=0.48.0",
"openai>=1.40.0",
# dataset export (HuggingFace-style Parquet)
"pandas>=3.0.3",
"pyarrow>=18.0.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.15",
"datasets>=3.0.0", # to verify the export loads as a HF dataset
]
[tool.uv]
package = false # a workspace of scripts/packages, not a distributable wheel
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."] # make the top-level `corpus` package importable in tests