mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-04 16:52:37 +00:00
Pin crewai-a2a to 1.13.0a6 to match workspace versioning convention. Move all a2a tests and cassettes from lib/crewai to lib/crewai-a2a, add crewai-a2a to devtools bump tooling, and update pytest/ruff/mypy configs.
29 lines
653 B
TOML
29 lines
653 B
TOML
[project]
|
|
name = "crewai-a2a"
|
|
dynamic = ["version"]
|
|
description = "Agent-to-Agent (A2A) protocol communication for CrewAI"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Joao Moura", email = "joao@crewai.com" }
|
|
]
|
|
requires-python = ">=3.10, <3.14"
|
|
dependencies = [
|
|
"crewai==1.13.0a6",
|
|
"a2a-sdk~=0.3.10",
|
|
"httpx-auth~=0.23.1",
|
|
"httpx-sse~=0.4.0",
|
|
"aiocache[redis,memcached]~=0.12.3",
|
|
"pydantic~=2.11.9",
|
|
"pyjwt>=2.9.0,<3",
|
|
"httpx~=0.28.1",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
crewai = { workspace = true }
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/crewai_a2a/__init__.py" |