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