Assistant: codex Assistant-Model: gpt-5.6-sol Assistant-Session: 01a02b6f-7db1-7222-918b-e813a6bda38d
29 lines
790 B
TOML
29 lines
790 B
TOML
[project]
|
|
name = "rein-aharness"
|
|
version = "0.1.0"
|
|
description = "Thin executor worker: consumes emitted activity-core tasks and executes them via llm-connect adapters with kaizen persona orientation"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"PyYAML>=6.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
rein-aharness = "rein_aharness.cli:main"
|
|
|
|
[tool.uv.sources]
|
|
llm-connect = { path = "../llm-connect", editable = true }
|
|
glas-harness = { path = "../glas-harness", editable = true }
|
|
sandboxer = { path = "../sand-boxer", editable = true }
|
|
|
|
[project.optional-dependencies]
|
|
llm = ["llm-connect"]
|
|
glas = ["glas-harness", "sandboxer"]
|
|
dev = ["pytest>=8"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["rein_aharness"]
|