-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
62 lines (60 loc) · 1.33 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name = 'threefiner',
packages = find_packages(exclude=[]),
include_package_data = True,
entry_points={
# CLI tools
'console_scripts': [
'threefiner = threefiner.cli:main'
],
},
version = '0.1.2',
license='MIT',
description = 'Threefiner: a text-guided mesh refiner',
author = 'kiui',
author_email = '[email protected]',
long_description=open("readme.md", encoding="utf-8").read(),
long_description_content_type = 'text/markdown',
url = 'https://github.com/3DTopia/threefiner',
keywords = [
'generative mesh refinement',
],
install_requires=[
'tyro',
'tqdm',
'rich',
'ninja',
'numpy',
'pandas',
'matplotlib',
'opencv-python',
'imageio',
'imageio-ffmpeg',
'scipy',
'scikit-learn',
'torch',
'einops',
'huggingface_hub',
'diffusers',
'accelerate',
'transformers',
"sentencepiece", # required by deepfloyd-if T5 encoder
'plyfile',
'pygltflib',
'xatlas',
'trimesh',
'PyMCubes',
'pymeshlab',
"pysdf",
"diso",
"envlight",
'dearpygui',
'kiui >= 0.2.1',
],
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)