-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (44 loc) · 1.11 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import, print_function
import os
import re
import io
import argparse
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def read(*names, **kwargs):
return io.open(
os.path.join(here, *names),
encoding=kwargs.get('encoding', 'utf8')
).read()
about = {}
exec(read('python', 'undo', '__version__.py'), about)
requirements = [
"numpy==2.0.0",
"polyscope==2.2.1",
"trimesh==4.4.3",
"plyfile==1.0.3",
"tabulate==0.9.0",
"open3d",
"opencv-python",
]
ext_modules = []
setup(
name=about['__title__'],
version=about['__version__'],
license=about['__license__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
long_description='',
packages=find_packages('python'),
package_dir={'': 'python'},
# zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3.10',
],
keywords=[''],
install_requires=requirements,
)