mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
41 lines
1,010 B
TOML
41 lines
1,010 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "reasoning_gym"
|
|
version = "0.1.1"
|
|
authors = [
|
|
{ name = "Open-Thought community", email = "andreas.koepf@xamla.com" },
|
|
]
|
|
description = "A library of procedural dataset generators for training reasoning models"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = ["sympy>=1.13.1"]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
license = "Apache-2.0"
|
|
license-files = ["LICENSE*"]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/open-thought/reasoning-gym"
|
|
"Bug Tracker" = "https://github.com/open-thought/reasoning-gym/issues"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["reasoning_gym"]
|
|
|
|
[tool.hatch.build]
|
|
include = ["reasoning_gym/**/*.txt"]
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
target-version = ['py312']
|
|
include = '\.pyi?$'
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
line_length = 120
|