mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-06 17:52:35 +00:00
23 lines
515 B
TOML
23 lines
515 B
TOML
[project]
|
|
name = "crewai-a2a"
|
|
dynamic = ["version"]
|
|
description = "Agent-to-Agent (A2A) protocol support for CrewAI"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Greyson LaLonde", email = "greyson@crewai.com" }
|
|
]
|
|
requires-python = ">=3.10, <3.14"
|
|
dependencies = [
|
|
"a2a-sdk~=0.3.10",
|
|
"httpx-auth~=0.23.1",
|
|
"httpx-sse~=0.4.0",
|
|
"aiocache[redis,memcached]~=0.12.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/crewai_a2a/__init__.py"
|