Spaces:
Running
Running
File size: 390 Bytes
f03b07d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | [project]
name = "triad-pipeline"
version = "0.1.0"
description = "TRIAD Decomposition Pipeline — Governed Generation Pipeline Phase 1"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
]
[project.scripts]
triad-pipeline = "pipeline.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
|