fix: Remove duplicate project section and reorganize pyproject.toml

This commit is contained in:
Andreas Koepf (aider) 2025-01-31 12:15:27 +01:00
parent 69fb127b4e
commit 4ac41bd174

View file

@ -18,20 +18,6 @@ dependencies = [
"magiccube==0.3.0",
"pyfiglet==1.0.2"
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
]
[tool.pytest.ini_options]
addopts = "-ra -q --cov=reasoning_gym"
testpaths = [
"tests",
]
[project]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
@ -40,6 +26,12 @@ classifiers = [
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"
@ -59,3 +51,9 @@ include = '\.pyi?$'
profile = "black"
multi_line_output = 3
line_length = 120
[tool.pytest.ini_options]
addopts = "-ra -q --cov=reasoning_gym"
testpaths = [
"tests",
]