20 lines
393 B
TOML
20 lines
393 B
TOML
|
|
[project]
|
||
|
|
name = "custodian-agent-runtime"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Custodian Agent Runtime — OODA loop bootstrap"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"httpx>=0.28.0",
|
||
|
|
"llm-connect",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.uv.sources]
|
||
|
|
llm-connect = { path = "/home/worsch/llm-connect" }
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
pythonpath = ["."]
|
||
|
|
|
||
|
|
[dependency-groups]
|
||
|
|
dev = ["pytest>=8.0"]
|