-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.05 KB
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
33
34
35
36
37
38
39
40
41
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "brickalize"
version = "1.0.2" # Should match __version__ in __init__.py
authors = [
{ name="Sten Nellen (Creative Mindstorms)", email="creativemindstorms1@gmail.com" },
]
description = "A package for converting 3D models to LEGO-like brick structures and visualizing them."
readme = "README.md"
requires-python = ">=3.8"
license = { file="LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
]
keywords = [
"3D",
"LEGO",
"modeling",
]
dependencies = [
"numpy",
"open3d",
"trimesh",
"tqdm",
"opencv-python",
"scipy",
"rtree",
]
[project.urls]
Homepage = "https://github.com/CreativeMindstorms/brickalize"
Documentation = "https://brickalize.readthedocs.io/en/latest/"