-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 793 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 os.path import join, dirname, realpath
from setuptools import setup
import sys
assert sys.version_info.major == 3 and sys.version_info.minor >= 6, \
"You should have Python 3.6 and greater."
setup(
name='thrifty',
py_modules=['thrifty'],
version='0.0.1',
install_requires=[
'mujoco-py==2.0.2.9',
'cloudpickle',
'gym',
'joblib',
'matplotlib',
'numpy',
'pandas',
'pytest',
'psutil',
'scipy',
'seaborn==0.8.1',
'torch==1.6.0',
'tqdm',
'moviepy',
'opencv-python',
'torchvision==0.7.0',
'robosuite==1.2.0',
'h5py',
'hidapi',
'pygame'
],
description="Code for ThriftyDAgger.",
author="Ryan Hoque",
)