-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
35 lines (33 loc) · 917 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
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, \
"This repo is designed to work with Python 3.6 and greater." \
+ "Please install it before proceeding."
setup(
name='teachDRL',
py_modules=['teachDRL'],
version="0.1",
install_requires=[
'cloudpickle==1.2.0',
'gym[atari,box2d,classic_control]>=0.10.8',
'ipython',
'joblib',
'matplotlib',
'numpy',
'pandas',
'pytest',
'psutil',
'scipy',
'sklearn',
'imageio',
'seaborn==0.8.1',
'tensorflow<=1.16.0',
'setuptools',
'treelib',
'gizeh',
'tqdm'
],
description="Teacher algorithms for curriculum learning of Deep RL in continuously parameterized environments",
author="Rémy Portelas",
)