mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-19 12:58:07 +00:00
fix tool.hatch.build section in pyproject.toml
This commit is contained in:
parent
f522cbb349
commit
ff74dfb5f2
2 changed files with 10 additions and 12 deletions
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "reasoning_gym"
|
name = "reasoning_gym"
|
||||||
version = "0.1.4"
|
version = "0.1.5"
|
||||||
authors = [
|
authors = [
|
||||||
{ name = "Open-Thought community", email = "andreas.koepf@xamla.com" },
|
{ name = "Open-Thought community", email = "andreas.koepf@xamla.com" },
|
||||||
]
|
]
|
||||||
|
|
@ -31,20 +31,20 @@ license = "Apache-2.0"
|
||||||
license-files = ["LICENSE*"]
|
license-files = ["LICENSE*"]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
test = [
|
test = ["pytest>=7.0.0", "pytest-cov>=4.0.0"]
|
||||||
"pytest>=7.0.0",
|
|
||||||
"pytest-cov>=4.0.0",
|
|
||||||
]
|
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
"Homepage" = "https://github.com/open-thought/reasoning-gym"
|
"Homepage" = "https://github.com/open-thought/reasoning-gym"
|
||||||
"Bug Tracker" = "https://github.com/open-thought/reasoning-gym/issues"
|
"Bug Tracker" = "https://github.com/open-thought/reasoning-gym/issues"
|
||||||
|
|
||||||
[tool.hatch.build.targets.wheel]
|
|
||||||
packages = ["reasoning_gym"]
|
|
||||||
|
|
||||||
[tool.hatch.build]
|
[tool.hatch.build]
|
||||||
include = ["reasoning_gym/**/*.txt"]
|
packages = ["reasoning_gym"]
|
||||||
|
include = [
|
||||||
|
"reasoning_gym/**/*.py",
|
||||||
|
"reasoning_gym/**/*.txt",
|
||||||
|
"reasoning_gym/**/levels/*",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 120
|
line-length = 120
|
||||||
|
|
@ -58,6 +58,4 @@ line_length = 120
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
addopts = "-ra -q"
|
addopts = "-ra -q"
|
||||||
testpaths = [
|
testpaths = ["tests"]
|
||||||
"tests",
|
|
||||||
]
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ Reasoning Gym - A library of procedural dataset generators for training reasonin
|
||||||
from . import algebra, algorithmic, arithmetic, code, cognition, data, games, geometry, graphs, logic
|
from . import algebra, algorithmic, arithmetic, code, cognition, data, games, geometry, graphs, logic
|
||||||
from .factory import create_dataset, register_dataset
|
from .factory import create_dataset, register_dataset
|
||||||
|
|
||||||
__version__ = "0.1.4"
|
__version__ = "0.1.5"
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"algebra",
|
"algebra",
|
||||||
"algorithmic",
|
"algorithmic",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue