-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
77 lines (71 loc) · 1.91 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
[project]
name = "a2a-handler"
version = "0.1.17"
description = "An A2A Protocol client TUI and CLI."
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{ name = "Al Duncanson", email = "alDuncanson@proton.me" }
]
keywords = [
"a2a",
"a2a-protocol",
"agent",
"agent-to-agent",
"ai",
"cli",
"tui",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"a2a-sdk>=0.3.24",
"click>=8.0.0",
"rich-click>=1.8.0",
"google-adk>=1.26.0",
"httpx>=0.27.0",
"litellm>=1.0.0",
"python-dotenv>=1.0.0",
"rich>=13.0.0",
"textual>=0.47.0",
"uvicorn>=0.30.0",
"textual-serve>=1.1.0",
"mcp[cli]>=1.2.0",
"truststore>=0.9.0",
]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"textual-dev>=1.8.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ty>=0.0.1a27",
]
[project.urls]
Homepage = "https://github.com/alDuncanson/handler"
Repository = "https://github.com/alDuncanson/handler"
Documentation = "https://github.com/alDuncanson/handler#readme"
Issues = "https://github.com/alDuncanson/handler/issues"
Changelog = "https://github.com/alDuncanson/handler/releases"
[project.scripts]
handler = "a2a_handler.cli:main"
[build-system]
requires = ["uv_build>=0.9.15,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = "src"
[tool.ruff.lint.per-file-ignores]
"src/a2a_handler/cli/__init__.py" = ["E402"]