File size: 1,262 Bytes
eab734a | 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # pyproject keywords for packaging / discovery
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "statement-to-tikz"
version = "0.1.0"
description = "Convert olympiad geometry statements into constraint-solved TikZ diagrams"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
keywords = [
"geometry",
"olympiad",
"tikz",
"latex",
"constraint-solver",
"formalization",
"diagram-generation",
"imo",
"scipy",
]
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"pydantic>=2.5",
"typer>=0.12",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.urls]
Homepage = "https://github.com/will702/statement-to-tikz"
Repository = "https://github.com/will702/statement-to-tikz"
Documentation = "https://github.com/will702/statement-to-tikz#readme"
"Hugging Face" = "https://huggingface.co/will702/statement-to-tikz"
[project.scripts]
stt = "statement_to_tikz.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/statement_to_tikz"]
[tool.hatch.build.targets.wheel.sources]
"src/statement_to_tikz" = "statement_to_tikz"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
markers = [
"integration: tests that call external LLM APIs",
]
|