-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 842 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 842 Bytes
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
from distutils.core import setup
from setuptools import find_packages
from setuptools.command.install import install
import os
setup(
name='graspclutter6dAPI',
version='0.0.1',
description='GraspClutter6D API',
author='Seunghyeok Back',
author_email='shback@kimm.re.kr',
url='https://sites.google.com/view/graspclutter6d',
packages=find_packages(),
install_requires=[
'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',
'scikit-learn',
'grasp_nms',
'numpy==1.23.4',
]
)