-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "part3d"
version = "0.1.0"
description = "Decomposição semântica de meshes 3D via Hunyuan3D-Part (P3-SAM + X-Part) — optimizado para ~6 GB VRAM"
requires-python = ">=3.13,<3.14"
license = "MIT"
dependencies = [
"torch>=2.6.0",
"numpy>=1.24.0",
"trimesh>=4.0.0",
"click>=8.1.0",
"rich>=13.0.0",
"rich-click>=1.8.0",
"tqdm>=4.66.0",
"Pillow>=10.0.0",
"safetensors>=0.4.0",
"huggingface-hub>=0.20.0",
"diffusers>=0.30.0",
"transformers>=4.46.0",
"easydict>=1.10",
"pytorch-lightning>=1.9.0",
"optimum-quanto>=0.2.0",
"bitsandbytes>=0.45.0",
"torchao>=0.10.0; sys_platform != 'darwin'",
"omegaconf>=2.3.0", # Necessário para X-Part HF Space
"einops>=0.8.0", # Necessário para partformer_dit.py
"scikit-image>=0.24.0", # Necessário para surface_extractors (skimage.measure)
"addict>=2.4.0", # Necessário para sonata/model.py
"spconv-cu121>=2.3.0", # Necessário para sonata (sparse convolution)
"sdnq>=0.1.0", # Quantização moderna SDNQ
"accelerate>=0.24.0",
"torchmetrics>=1.6.0",
"pyyaml>=6.0.0",
"configargparse>=1.7",
"timm",
"numba",
"fpsample",
"scikit-learn",
"onnxruntime>=1.16.0",
"gamedev-shared @ file:../Shared",
"bpy>=5.1.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.0.0",
"ruff>=0.11.0",
]
[project.scripts]
part3d = "part3d.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]