forked from dougsm/egad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 786 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
from setuptools import setup
setup(name='egad',
version='0.1',
description='EGAD: an Evolved Grasping Analysis Dataset',
url='http://github.com/dougsm/egad',
author='Doug Morrison',
install_requires=[
'neat-python',
'numpy',
'scipy',
'click',
'torch',
'imageio',
'torch',
'trimesh',
'JPype1',
'progressbar2',
'graphviz',
'shapely',
'Rtree',
'pyglet<2.0',
'scikit-image',
'pytorch-neat @ git+https://github.com/dougsm/PyTorch-NEAT'
],
dependency_links=[
'https://github.com/dougsm/PyTorch-NEAT/tarball/master#egg=pytorch-neat'
],
packages=['egad'],
)