-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (101 loc) · 3.56 KB
/
pyproject.toml
File metadata and controls
114 lines (101 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["hatchling>=1.21,<1.22"]
build-backend = "hatchling.build"
[project]
name = "agentanycast"
version = "0.7.3"
description = "Connect AI agents across any network — no public IP needed. P2P encrypted, NAT-traversing, zero-config on LAN."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{ name = "AgentAnycast Contributors" },
]
keywords = [
"a2a", "a2a-protocol", "agent", "agent-communication", "p2p", "libp2p",
"grpc", "mcp", "mcp-server", "crewai", "langgraph", "google-adk", "openai-agents",
"claude-agent-sdk", "strands-agents", "pydantic-ai", "agno", "zero-config",
"end-to-end-encryption", "nat-traversal", "decentralized", "noise-protocol", "did",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"grpcio>=1.60",
"protobuf>=7.34.1",
"httpx>=0.27",
"click>=8.0",
"base58>=2.1",
"cryptography>=42.0",
]
[project.urls]
Homepage = "https://github.com/AgentAnycast/agentanycast"
Repository = "https://github.com/AgentAnycast/agentanycast-python"
Issues = "https://github.com/AgentAnycast/agentanycast/issues"
Changelog = "https://github.com/AgentAnycast/agentanycast-python/blob/main/CHANGELOG.md"
[project.scripts]
agentanycast = "agentanycast.cli.main:main"
agentanycast-mcp = "agentanycast.mcp_server:main"
[project.optional-dependencies]
crewai = ["crewai>=0.80"]
langgraph = ["langgraph>=0.2"]
adk = ["google-adk>=1.0"]
openai-agents = ["openai-agents>=0.10"]
claude = ["claude-agent-sdk>=0.1"]
strands = ["strands-agents>=0.1"]
pydantic-ai = ["pydantic-ai>=0.1"]
agno = ["agno>=1.0"]
mcp = ["agentanycast-mcp>=0.7"]
adapters = [
"crewai>=0.80", "langgraph>=0.2", "google-adk>=1.0", "openai-agents>=0.10",
"claude-agent-sdk>=0.1", "strands-agents>=0.1", "pydantic-ai>=0.1", "agno>=1.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=6.0",
"ruff>=0.4",
"mypy>=1.10",
]
[tool.hatch.build.targets.wheel]
packages = ["src/agentanycast"]
[tool.ruff]
target-version = "py310"
line-length = 100
exclude = ["src/agentanycast/_generated"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = "agentanycast._generated.*"
ignore_errors = true
follow_imports = "skip"
[[tool.mypy.overrides]]
module = "base58"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "agentanycast.mcp_server"
ignore_errors = true
[[tool.mypy.overrides]]
module = ["grpc", "grpc.*", "grpc.aio", "grpc.aio.*", "google.protobuf.*", "crewai", "crewai.*", "langgraph", "langgraph.*", "google.adk", "google.adk.*", "google.genai", "google.genai.*", "agents", "agents.*", "claude_agent_sdk", "claude_agent_sdk.*", "strands", "strands.*", "mcp", "mcp.*", "pydantic_ai", "pydantic_ai.*", "agno", "agno.*", "dns", "dns.*", "opentelemetry", "opentelemetry.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: mark test as integration test (requires relay/daemon binaries)",
]
# Default: skip integration tests. Run explicitly with: pytest -m integration
addopts = "-m 'not integration'"