mathcompose / pyproject.toml
42e's picture
Upload folder using huggingface_hub
014b14c verified
Raw
History Blame Contribute Delete
629 Bytes
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "mathcompose"
version = "0.1.0"
description = "Two <=4B math models (generative verifier + solution generator) that demonstrate the generator-verifier gap."
requires-python = ">=3.10"
dynamic = ["dependencies"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
markers = [
"network: test hits the network (HF Hub); skip with -m 'not network'",
"slow: slow test (loads a model)",
]