-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.51 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "text3d"
version = "0.1.0"
description = "Text-to-3D com Text2D + Hunyuan3D-2.1 SDNQ INT4"
readme = "README.md"
authors = [{ name = "Text3D Project" }]
requires-python = ">=3.13,<3.14"
license = "MIT"
dependencies = [
"torch>=2.6.0",
"torchvision>=0.21.0",
"diffusers>=0.37.0",
"transformers>=4.48.0",
"accelerate>=0.24.0",
"huggingface-hub>=0.20.0",
"numpy>=1.24.0",
"Pillow>=10.0.0",
"trimesh>=4.0.0",
"fast-simplification>=0.1.7",
"imageio>=2.31.0",
"imageio-ffmpeg>=0.4.9",
"click>=8.1.0",
"rich>=13.0.0",
"rich-click>=1.8.0",
"tqdm>=4.66.0",
"pydantic>=2.0.0",
"sdnq>=0.1.0",
"einops>=0.7.0",
"timm>=0.9.0",
"omegaconf>=2.3.0",
"opencv-python>=4.8.0",
"kornia>=0.7.0",
"bpy>=5.1.0",
"gamedev-shared @ file:../Shared",
"text2d @ file:../Text2D",
"pymeshfix>=0.18.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]
text3d = "text3d.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
text3d = ["cursor_skill/*.md"]
"text3d.hy3dshape" = ["**/*.py", "**/*.yaml", "**/*.json"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]