-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[project]
name = "diff3d"
version = "0.3.0post1"
authors = [{name = "Bruce D. Lucas"}]
description = "Fast visual 3d diff for STL, OBJ, 3MF, and STEP files"
readme = "README.md"
dependencies = [
"pyvista",
"lib3mf",
"scipy",
"numpy",
"msvc-runtime; platform_system=='Windows'",
#"build123d",
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/bdlucas1/diff3d"
Issues = "https://github.com/bdlucas1/diff3d/issues"
Discussions = "https://github.com/bdlucas1/diff3d/discussions"
[project.scripts]
diff3d = "diff3d:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"