-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 850 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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "agentbeats-tutorial"
version = "0.1.0"
description = "Agentbeats Tutorial"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"a2a-sdk[http-server]>=0.3.20",
"httpx>=0.28.1",
"pydantic>=2.11.9",
"python-dotenv>=1.1.1",
"uvicorn>=0.38.0",
]
[project.optional-dependencies]
debate = [
"google-genai>=1.36.0",
]
tau2-agent = [
"litellm>=1.0.0",
]
tau2-evaluator = [
"nest-asyncio>=1.6.0",
"tau2 @ git+https://github.com/sierra-research/tau2-bench.git",
]
[project.scripts]
agentbeats-run = "agentbeats.run_scenario:main"
[tool.uv]
package = true
dev-dependencies = [
"mypy>=1.18.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/agentbeats"]