stevee00 commited on
Commit
6524530
·
verified ·
1 Parent(s): 25c2ba9

Upload pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +39 -0
pyproject.toml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "interiorgen3d"
7
+ version = "0.1.0"
8
+ description = "Single Interior Image → Editable 3D Interior Scene"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [{name = "InteriorGen3D Team"}]
13
+ keywords = ["3D", "interior design", "AI", "generation", "reconstruction"]
14
+
15
+ dependencies = [
16
+ "torch>=2.1.0",
17
+ "torchvision>=0.16.0",
18
+ "numpy>=1.24.0",
19
+ "scipy>=1.10.0",
20
+ "trimesh>=4.0.0",
21
+ "transformers>=4.40.0",
22
+ "diffusers>=0.28.0",
23
+ "accelerate>=0.28.0",
24
+ "Pillow>=10.0.0",
25
+ "fastapi>=0.110.0",
26
+ "uvicorn>=0.27.0",
27
+ "gradio>=4.20.0",
28
+ "trackio>=0.3.0",
29
+ "huggingface-hub>=0.22.0",
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ dev = ["pytest", "black", "ruff", "mypy"]
34
+ training = ["datasets>=2.18.0", "peft>=0.10.0", "trl>=0.8.0"]
35
+ export = ["pygltflib>=1.16.0", "open3d>=0.17.0"]
36
+ all = ["interiorgen3d[dev,training,export]"]
37
+
38
+ [tool.setuptools.packages.find]
39
+ include = ["interiorgen3d*"]