-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (41 loc) · 1.29 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
from distutils.core import setup
from setuptools import find_packages
def readme():
with open('README.rst') as f:
return f.read()
def setup_package():
config = {
'name': 'yarlp',
'version': '0.0.9',
'description': 'yarlp',
'long_description': readme(),
'author': 'Baruch Tabanpour',
'author_email': 'baruch@tabanpour.info',
'url': 'https://github.com/btaba/yarlp',
'license': 'MIT',
'install_requires': [
'Click',
],
'entry_points': '''
[console_scripts]
run_yarlp_experiment=yarlp.experiment.experiment:run_experiment
upload_to_openai=yarlp.experiment.experiment:upload_to_openai
compare_benchmark=yarlp.experiment.experiment:compare_benchmark
make_plots=yarlp.experiment.experiment:make_plots
''',
'install_requires': [
'gym[mujoco,atari,classic_control]'
],
'tests_require': ['nose'],
'packages': find_packages(
exclude=("tests", )),
'keywords': [
'reinforcement learning',
'deep reinforcement learning',
'experiment',
'benchmark'
]
}
setup(**config)
if __name__ == '__main__':
setup_package()