summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: ce2afe94d09a89f47c5bd15a1d1a92485fef8a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"