-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.34 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "worldgen"
version = "0.1.0"
authors = [
{ name="Ziyang Xie", email="ziyangxie01@gmail.com" },
]
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",
"opencv-python>=4.12.0.88",
"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
"timm>=1.0.15",
"accelerate>=1.1.1",
"utils3d @ git+https://github.com/EasternJournalist/utils3d.git@3913c65d81e05e47b9f367250cf8c0f7462a0900"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "worldgen.__version__"}