File size: 2,670 Bytes
b61be7d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "interiorfusion"
version = "0.1.0"
description = "Single 2D image to high-quality editable 3D interior scene generation"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
    {name = "InteriorFusion Research Team"}
]
keywords = [
    "3d-generation",
    "interior-design",
    "computer-vision",
    "gaussian-splatting",
    "mesh-reconstruction",
    "diffusion-models",
    "pbr-materials",
    "scene-understanding",
]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
]

dependencies = [
    "torch>=2.1.0",
    "torchvision>=0.16.0",
    "diffusers>=0.27.0",
    "transformers>=4.40.0",
    "accelerate>=0.28.0",
    "datasets>=2.17.0",
    "pillow>=10.0.0",
    "numpy>=1.24.0",
    "scipy>=1.11.0",
    "trimesh>=4.0.0",
    "pygltflib>=1.16.0",
    "open3d>=0.18.0",
    "opencv-python>=4.8.0",
    "scikit-image>=0.22.0",
    "imageio>=2.31.0",
    "imageio-ffmpeg>=0.4.9",
    "tqdm>=4.66.0",
    "einops>=0.7.0",
    "omegaconf>=2.3.0",
    "wandb>=0.16.0",
    "tensorboard>=2.15.0",
    "lpips>=0.1.4",
    "xatlas>=0.0.8",
    "fastapi>=0.110.0",
    "uvicorn>=0.27.0",
    "gradio>=4.20.0",
    "httpx>=0.27.0",
    "pydantic>=2.6.0",
    "rich>=13.7.0",
    "typer>=0.12.0",
    "safetensors>=0.4.2",
    "huggingface-hub>=0.22.0",
    "peft>=0.10.0",
    "bitsandbytes>=0.42.0",
    "kernels>=0.0.2",
    "trackio>=0.4.0",
    "segment-anything>=1.0",
    "rembg>=2.0.0",
    "kiui>=1.0.0",
    "nerfacc>=0.5.3",
]

[project.optional-dependencies]
dev = [
    "pytest>=8.0.0",
    "pytest-cov>=4.1.0",
    "black>=24.1.0",
    "ruff>=0.2.0",
    "mypy>=1.8.0",
    "pre-commit>=3.6.0",
]
gs = [
    "gsplat>=0.1.0",
    "nerfstudio>=1.0.0",
]
comfy = [
    "comfyui>=0.2.0",
]

[project.urls]
Homepage = "https://huggingface.co/stevee00/InteriorFusion"
Repository = "https://github.com/stevee00/InteriorFusion"
Documentation = "https://huggingface.co/spaces/stevee00/InteriorFusion-Docs"

[project.scripts]
interiorfusion-infer = "interiorfusion.cli:infer_cli"
interiorfusion-train = "interiorfusion.cli:train_cli"
interiorfusion-api = "interiorfusion.api.main:main"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
interiorfusion = ["configs/*.yaml", "configs/*.json"]