-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1.25 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
[project]
name = "aar-agent"
version = "0.3.3.dev0"
description = "Aar — Adaptive Action & Reasoning Agent framework"
readme = "README.md"
requires-python = ">=3.12.2"
dependencies = [
"pydantic>=2.12.5",
"httpx>=0.28.1",
"typer>=0.24.1",
"rich>=14.3.4",
"textual>=8.2.3",
"textual-speedups==0.2.1",
"jsonschema>=4.0.0",
]
[build-system]
requires = ["hatchling==1.28.0"]
build-backend = "hatchling.build"
[project.optional-dependencies]
anthropic = ["anthropic>=0.94.0"]
openai = ["openai>=2.31.0"]
ollama = ["httpx>=0.28.1"]
generic = ["httpx>=0.28.1"]
gemini = ["google-genai>=1.0.0", "httpx>=0.28.1"]
mcp = ["mcp>=1.27.0"]
acp = ["agent-client-protocol>=0.10.0"]
dev = [
"pytest>=8.4.2",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.10",
]
all = ["anthropic>=0.94.0", "openai>=2.31.0", "httpx>=0.28.1", "google-genai>=1.0.0", "mcp>=1.27.0", "agent-client-protocol>=0.10.0"]
[project.scripts]
aar = "agent.transports.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["agent"]
[tool.hatch.build.targets.wheel.force-include]
"config/distros" = "agent/data/distros"
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.ruff.lint.per-file-ignores]
"tests/conftest.py" = ["E402"]
[tool.pytest.ini_options]
asyncio_mode = "auto"