-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 815 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 815 Bytes
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
[project]
name = "a2c-python"
version = "0.2.0"
description = "A2C (Agent-to-Computer) Protocol — Python Reference Implementation"
requires-python = ">=3.10"
dependencies = [
"grpcio==1.80.0",
"grpcio-tools==1.80.0",
"pydantic>=2.11",
"pydantic-ai-slim[google]==1.85.0",
"textual==8.2.4",
"pyfiglet==1.0.4",
"python-dotenv>=1.1",
"aiohttp==3.13.5",
]
[project.scripts]
a2c-brain = "brain.server:main"
a2c-body = "body.tui:main"
a2c-cli = "body.cli:main"
a2c-daemon = "body.cli:main_daemon"
a2c-operator = "brain.operator_tui:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/a2c", "src/brain", "src/body"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.25",
]