-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 936 Bytes
/
setup.py
File metadata and controls
45 lines (41 loc) · 936 Bytes
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
from setuptools import setup
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
"objaverse",
"sentence-transformers",
# "torch",
# "torchvision",
"PyMCubes==0.1.4",
"hydra-core",
"omegaconf",
"trimesh",
"plyfile",
"matplotlib",
"numpy==1.24.4",
"params-proto",
"python-slugify",
"warp_lang==0.10.1",
"taichi==1.5.0",
"dotenv",
'timm==1.0.13',
# for qwen
'qwen-vl-utils[decord]',
'accelerate',
# https://github.com/QwenLM/Qwen2.5-VL/issues/723
'transformers @ git+https://github.com/huggingface/transformers',
'streamlit',
'huggingface_hub',
'colorlog',
'seaborn',
'umap-learn',
]
setup(
name='pixie',
version='0.0.0',
description='pixie',
author='Long Le',
install_requires=INSTALL_REQUIRES,
python_requires='>=3.10',
packages=find_packages(
include=['pixie', 'pixie.*']),
)