-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (58 loc) · 1.58 KB
/
setup.py
File metadata and controls
59 lines (58 loc) · 1.58 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
from setuptools import find_packages, setup
setup(
name="mvadapter",
version="0.1.0",
description="MV-Adapter: A Multi-View Adapter for 3D Generation",
author="Zehuan Huang",
packages=[
"mvadapter",
"mvadapter.loaders",
"mvadapter.models",
"mvadapter.pipelines",
"mvadapter.schedulers",
"mvadapter.utils",
"mvadapter.utils.mesh_utils",
],
install_requires=[
"torch>=2.0.0",
"torchvision",
"controlnet_aux",
"diffusers",
"transformers",
"peft",
"numpy",
"huggingface_hub",
"accelerate",
"opencv-python",
"safetensors",
"pillow",
"omegaconf",
"trimesh",
"einops",
"gradio",
"timm",
"kornia",
"scikit-image",
"sentencepiece",
"spandrel",
"open3d",
"pymeshlab",
"cvcuda_cu12",
],
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/huanngzh/MV-Adapter",
project_urls={
"Project Page": "https://huanngzh.github.io/MV-Adapter-Page/",
"Paper": "https://arxiv.org/abs/2412.03632",
"Model Weights": "https://huggingface.co/huanngzh/mv-adapter",
},
)