-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 720 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"""Module information"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Intrinsically motivated, model-based hierarchical reinforcement learning agents.',
'author': 'Chris Vigorito and Xander Dunn',
'url': 'https://bitbucket.org/ChrisVigorito/imrl',
'download_url': 'https://bitbucket.org/ChrisVigorito/imrl',
'author_email': '[email protected]',
'version': '0',
'install_requires': ['pytest', 'numpy', 'scipy', 'scikit-learn', 'pyrsistent', 'cytoolz', 'more_itertools', 'matplotlib'],
'packages': ['imrl'],
'scripts': [],
'name': 'Intrinsically Motivated Reinforcement Learning'
}
setup(**config)