bd_cruft/pyproject.toml

52 lines
1.1 KiB
TOML

[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "bd_cruft"
dynamic = ["version"]
authors = [
{name = "Jeff Moe", email = "moe@parrot.codes"},
]
description = "A python CAD programming library "
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"3d models",
"3d",
"brep",
"build123d",
"cad",
"opencascade",
"python",
]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache-2.0 License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"build123d @ git+https://github.com/gumyr/build123d",
"pydantic",
"typing_extensions >= 4.4.0, <5",
"CQ-editor @ git+https://github.com/jdegenstein/jmwright-CQ-Editor.git@main",
"ocp-vscode @ git+https://github.com/bernhard-42/vscode-ocp-cad-viewer",
"ocp-tessellate @ git+https://github.com/bernhard-42/ocp-tessellate",
]
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
write_to = "src/bd_cruft/_version.py"