Files
math-problems-structure/pyproject.toml

23 lines
528 B
TOML

[project]
name = "math-problems-structure"
version = "0.1.0"
description = "Definition to generate all sort of math problems."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.116.1",
"httpx2>=2.2.0",
"pydantic>=2.13.4",
"uvicorn[standard]>=0.35.0",
]
[project.scripts]
math-problems-server = "math_problems_structure.server.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["math_problems_structure"]