forked from ZiYang-xie/WorldGen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.3 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "worldgen"
version = "0.1.0"
authors = [
]
description = "A package for 3D scene generation 🌏"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"torch>=2.7.0",
"torchvision>=0.22.0",
"diffusers>=0.33.1",
"xformers>=0.0.30",
"transformers>=4.48.3",
"py360convert>=0.1.0",
"einops>=0.7.0",
"pillow>=8.0.0",
"scikit-image>=0.24.0",
"sentencepiece>=0.2.0",
"peft>=0.7.1",
"open3d>=0.19.0",
"trimesh>=4.6.1",
"nunchaku @ https://github.com/mit-han-lab/nunchaku/releases/download/v0.2.0/nunchaku-0.2.0+torch2.7-cp311-cp311-linux_x86_64.whl",
"viser @ git+https://github.com/ZiYang-xie/viser.git", # Modified viser to show double-side texture mesh to better view the scene
"UniK3D @ git+https://github.com/lpiccinelli-eth/UniK3D.git",
# "pytorch3d @ git+https://github.com/facebookresearch/pytorch3d.git",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "worldgen.__version__"}