From db293f3606a97b3e417de27124858e134005acbd Mon Sep 17 00:00:00 2001 From: Anonymous Authors Date: Fri, 24 Jul 2026 13:24:36 -0500 Subject: Add minimal GAP reproduction package --- pyproject.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') 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" -- cgit v1.2.3