woodshop/pyproject.toml

43 lines
1016 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-gui = "woodshop.gui.app: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",
]
# The unified desktop studio (embeds the viewport in a Qt window).
gui = [
"build123d>=0.6",
"pyvista>=0.43",
"PySide6>=6.6",
"pyvistaqt>=0.11",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"PyYAML>=6.0", # scripts/gen_wood_tools.py emits CmdForge tool YAML
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]