-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.27 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
import os
from setuptools import setup, find_packages
def run_setup():
# get version
version_namespace = {}
with open(os.path.join('nicr_grasping', 'version.py')) as version_file:
exec(version_file.read(), version_namespace)
version = version_namespace['_get_version'](with_suffix=False)
# setup
setup(name='nicr_grasping',
version='{}.{}.{}'.format(*version),
description='Package for core datatypes and dataset handling of grasping datasets.',
author='Benedict Stephan',
author_email='[email protected]',
license=('Copyright 2017, Neuroinformatics and Cognitive Robotics '
'Lab TU Ilmenau, Ilmenau, Germany'),
install_requires=[
'numpy',
'tqdm',
'shapely',
'rtree',
'imageio',
'pytest-benchmark',
'opencv-python',
'scikit-image',
'matplotlib',
'torch',
'torchmetrics',
'pandas',
'autolab_core',
'trimesh',
'open3d',
'cvxopt',
'pyhull',
],
packages=find_packages())
if __name__ == '__main__':
run_setup()