35 lines
798 B
TOML
35 lines
798 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "glas-harness"
|
|
version = "0.1.0"
|
|
description = "Meta-framework routing between concrete agent-harness backends (reins)"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"pydantic>=2.0",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
glas-harness = "glas_harness.cli:main"
|
|
|
|
[tool.uv.sources]
|
|
sandboxer = { path = "../sand-boxer", editable = true }
|
|
|
|
[project.optional-dependencies]
|
|
sandbox = ["sandboxer"]
|
|
dev = ["pytest>=8"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/glas_harness"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"profiles" = "glas_harness/data/profiles"
|
|
"registry/reins" = "glas_harness/data/reins"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["src"]
|