Repo-identity rename only (directory, git remote, pyproject name, self-referencing docs). CLI/package/deploy rename tracked separately in REIN-A-WP-0002-T02 since it touches a live Railiance deployment. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
26 lines
636 B
TOML
26 lines
636 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]
|
|
agent-harness = "agent_harness.cli:main"
|
|
|
|
[tool.uv.sources]
|
|
llm-connect = { path = "../llm-connect", editable = true }
|
|
|
|
[project.optional-dependencies]
|
|
llm = ["llm-connect"]
|
|
dev = ["pytest>=8"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["agent_harness"]
|