20 lines
432 B
TOML
20 lines
432 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "spatial-lab"
|
|
version = "0.1.0"
|
|
description = "Agent-operated mathematical geometry workbench with a verified Blender bridge"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
spatial-lab = "spatial_lab.cli:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["spatial_lab"]
|
|
|
|
[tool.setuptools.package-data]
|
|
spatial_lab = ["web/*"]
|