forked from graspnet/graspnetAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 819 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
from setuptools.command.install import install
import os
setup(
name='graspnetAPI',
version='1.2.10',
description='graspnet API',
author='Hao-Shu Fang, Chenxi Wang, Minghao Gou',
author_email='[email protected]',
url='https://graspnet.net',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'transforms3d==0.3.1',
'open3d>=0.8.0.0',
'trimesh',
'tqdm',
'Pillow',
'opencv-python',
'pillow',
'matplotlib',
'pywavefront',
'trimesh',
'scikit-image',
'autolab_core',
'autolab-perception',
'cvxopt',
'dill',
'h5py',
'sklearn',
'grasp_nms'
]
)