forked from jonasrothfuss/ProMP
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 660 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name="meta_policy_search",
version='0.1',
description='Framework that provides multiple gradient-based Meta-RL algorithms',
url='https://github.com/jonasrothfuss/maml-zoo',
author='Dennis Lee, Ignasi Clavera, Jonas Rothfuss',
author_email='jonas.rothfuss@berkeley.edu',
license='MIT',
packages=['meta_policy_search'],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'joblib==0.12.2',
'PyPrind',
'numpy',
'scipy',
'gym==0.10.5',
'python_dateutil',
'tensorflow'
],
zip_safe=False)