34 lines
733 B
TOML
34 lines
733 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "woodshop"
|
|
version = "0.1.0"
|
|
description = "Voice-driven conversational 3D woodworking & furniture modeler"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
woodshop = "woodshop.cli:main"
|
|
woodshop-view = "woodshop.viewer:main"
|
|
woodshop-talk = "woodshop.driver:main"
|
|
|
|
[project.optional-dependencies]
|
|
# Heavy 3D stack (OpenCASCADE etc.) — only needed to run the live viewport.
|
|
viewer = [
|
|
"build123d>=0.6",
|
|
"pyvista>=0.43",
|
|
]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"pytest-cov>=4.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|