glas-harness/pyproject.toml
tegwick 1cd890d871
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
feat: add versioned execution profiles
2026-08-21 00:21:53 +02:00

34 lines
779 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 = [
"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"]