forked from StanfordVL/GibsonEnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.4 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
from setuptools import setup, find_packages
from setuptools.command.develop import develop
from setuptools.command.install import install
from subprocess import check_call
from distutils.command.build_py import build_py as _build_py
import sys, os.path
'''
class PostInstallCommand(install):
"""Post-installation for installation mode."""
def run(self):
print('post installation')
check_call("bash realenv/envs/build.sh".split())
install.run(self)
'''
setup(name='gibson',
version='0.1.0',
description='Real Environment Developed by Stanford University',
url='https://github.com/fxia22/realenv',
author='Stanford University',
zip_safe=False,
install_requires=[
'numpy>=1.10.4',
'pyglet>=1.2.0',
'gym==0.9.4',
'Pillow>=3.3.0',
'PyYAML>=3.12',
'numpy>=1.13',
'pybullet>=1.8.7',
'transforms3d>=0.3.1',
'tqdm >= 4',
'pyzmq>=16.0.2',
'Pillow>=4.2.1',
'matplotlib>=2.1.0',
'mpi4py>=2.0.0',
'cloudpickle>=0.4.1',
'pygame>=1.9.3',
'opencv-python',
#'torch>=0.2.0',
'torchvision>=0.1.9'
],
tests_require=[],
# cmdclass={
# 'install': PostInstallCommand
#}
)
# check_call("bash realenv/envs/build.sh".split())