diff options
| author | Anonymous Authors <anonymous@invalid.example> | 2026-07-24 13:24:36 -0500 |
|---|---|---|
| committer | Anonymous Authors <anonymous@invalid.example> | 2026-07-24 13:24:36 -0500 |
| commit | db293f3606a97b3e417de27124858e134005acbd (patch) | |
| tree | 8efeedcd2033b82d1c90eb0cb84e134421ff1a8f /pyproject.toml | |
Add minimal GAP reproduction package
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ce2afe9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,26 @@ +[build-system] +requires = ["setuptools>=69"] +build-backend = "setuptools.build_meta" + +[project] +name = "gap-reproduce" +version = "0.1.0" +description = "Minimal reproduction package for the GAP mathematical transformation pipeline" +requires-python = ">=3.11" +dependencies = [ + "pydantic>=2.8", +] + +[project.optional-dependencies] +api = ["openai>=1.68"] +test = ["pytest>=8"] + +[project.scripts] +gap-reproduce = "gap_pipeline.cli:main" + +[tool.setuptools.packages.find] +where = ["src"] + +[tool.pytest.ini_options] +testpaths = ["tests"] +addopts = "-q" |
