Files

20 lines
409 B
TOML

[project]
name = "planetary-reducer-system-demo"
version = "0.1.0"
description = "A real, parameter-driven simple planetary reducer formula/generation/validation demo."
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.0",
"networkx>=3.0",
"simplecadapi>=2.0.2",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]