forked from open-thought/reasoning-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.25 KB
/
pyproject.toml
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
57
58
59
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reasoning_gym"
version = "0.1.2"
authors = [
{ name = "Open-Thought community", email = "[email protected]" },
]
description = "A library of procedural dataset generators for training reasoning models"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"bfi==1.0.4",
"cellpylib==2.4.0",
"sympy>=1.13.1",
"magiccube==0.3.0",
"pyfiglet==1.0.2"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICENSE*"]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[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
[tool.pytest.ini_options]
addopts = "-ra -q --cov=reasoning_gym"
testpaths = [
"tests",
]