mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
64 lines
1.5 KiB
TOML
64 lines
1.5 KiB
TOML
[build-system]
|
|
|
|
requires = [
|
|
"setuptools>=45",
|
|
"wheel",
|
|
"setuptools_scm[toml]>=6.2",
|
|
]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "build123d"
|
|
#version = "0.1.0"
|
|
#Uncomment this ^ for the next release
|
|
dynamic = ["version"]
|
|
authors = [
|
|
{name = "Roger Maitland", email = "gumyr9@gmail.com"},
|
|
]
|
|
description = "A python CAD programming library "
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
keywords = [
|
|
"3d models",
|
|
"3d printing",
|
|
"3d",
|
|
"brep",
|
|
"cad",
|
|
"cadquery",
|
|
"opencscade",
|
|
"python",
|
|
]
|
|
license = {text = "Apache-2.0"}
|
|
classifiers = [
|
|
"License :: OSI Approved :: Apache-2.0 License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
d
|
|
dependencies = [
|
|
"cadquery-ocp ~= 7.7.1",
|
|
"OCP-stubs @ git+https://github.com/CadQuery/OCP-stubs@7.7.0",
|
|
"typing_extensions >= 4.4.0, <5",
|
|
"numpy >= 1.24.1, <2",
|
|
"svgpathtools >= 1.5.1, <2",
|
|
"anytree >= 2.8.0, <3",
|
|
"ezdxf >= 1.0.0, < 2",
|
|
"numpy-stl >= 3.0.0, <4",
|
|
"ipython >= 8.0.0, <9",
|
|
"py_lib3mf @ git+https://github.com/jdegenstein/py-lib3mf",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/gumyr/build123d"
|
|
"Documentation" = "https://build123d.readthedocs.io/en/latest/index.html"
|
|
"Bug Tracker" = "https://github.com/gumyr/build123d/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
# exclude build123d._dev from wheels
|
|
exclude = ["build123d._dev"]
|
|
|
|
[tool.setuptools_scm]
|
|
write_to = "src/build123d/_version.py"
|
|
|