-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 856 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
[project]
name = "agent-control-google-adk-decorator-example"
version = "0.1.0"
description = "Google ADK decorator integration example for Agent Control"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"agent-control-engine",
"agent-control-evaluators",
"agent-control-models",
"agent-control-sdk",
"google-adk>=1.0.0,<2.0.0",
"google-genai>=1.0.0",
"python-dotenv>=1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["my_agent"]
[tool.uv.sources]
agent-control-sdk = { path = "../../sdks/python", editable = true }
agent-control-models = { path = "../../models", editable = true }
agent-control-engine = { path = "../../engine", editable = true }
agent-control-evaluators = { path = "../../evaluators/builtin", editable = true }