-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
59 lines (58 loc) · 1.71 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
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name="kiui",
version="0.2.14",
description="A toolkit for 3D vision",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/ashawkey/kiuikit",
author="kiui",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
entry_points={
# CLI tools
'console_scripts': [
'kire = kiui.render:main',
'vire = kiui.render_viser:main',
'kico = kiui.cli.convert:main',
'kisr = kiui.sr:main',
],
},
classifiers=[
"Programming Language :: Python :: 3 ",
],
keywords="utility",
install_requires=[
"lazy_loader",
"varname",
"objprint",
],
extras_require={
"full": [
"torch", # keep this so the doc can be built successfully
"tqdm",
"rich",
"numpy",
"scipy",
"scikit-image",
"scikit-learn",
"pandas",
"trimesh",
"pygltflib",
"matplotlib",
"opencv-python",
"imageio",
"imageio-ffmpeg",
"dearpygui",
'tyro',
'viser',
'pymeshlab',
'huggingface_hub',
'PyMCubes',
"fbxloader",
"envlight",
],
},
)