CoolFace
Apppublic

shivamtech9395/maths_reasoning_env

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml30 linesDownload Raw Back to root
1[build-system]2requires = ["hatchling"]3build-backend = "hatchling.build"4 5[project]6name = "math-reasoning-env"7version = "0.1.0"8description = "OpenEnv Math Reasoning Environment — 5 graded task types for RL training"9readme = "README.md"10requires-python = ">=3.10"11dependencies = [12    "fastapi>=0.110.0",13    "uvicorn[standard]>=0.29.0",14    "pydantic>=2.0.0",15    "httpx>=0.27.0",16]17 18[project.scripts]19math-reasoning-env-server = "server.app:app"20 21[tool.hatch.build.targets.wheel]22packages = ["."]23 24[tool.uv]25dev-dependencies = [26    "pytest>=8.0.0",27    "pytest-asyncio>=0.23.0",28    "httpx>=0.27.0",29]30