forked from sawcordwell/pymdptoolbox
-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
43 lines (38 loc) · 1.84 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='mdptoolbox-hiive',
version='4.0.3.1',
author='Andrew Rollings (originally Steven A. W. Cordwell)',
author_email='[email protected]',
url='https://github.com/hiive/hiivemdptoolbox',
download_url='https://github.com/hiive/hiivemdptoolbox/archive/4.0.3.1.tar.gz',
description='Markov Decision Process (MDP) Toolbox',
long_description='The MDP toolbox provides classes and functions for '
'the resolution of discrete-time Markov Decision Processes. The list of '
'algorithms that have been implemented includes backwards induction, '
'linear programming, policy iteration, q-learning and value iteration '
'along with several variations.'
''
'Now incorporates visualization code (test)',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'],
platforms=['Any'],
license='New BSD',
keywords='mdpviz rl',
packages=['hiive.mdptoolbox', 'hiive.examples', 'hiive.visualization', 'hiive.visualization.mdpviz', 'hiive.visualization.mdpviz.dsl'],
install_requires=['numpy', 'scipy', 'gym', 'ipython', 'networkx', 'pydot'],
extras_require={'LP': 'cvxopt'},
setup_requires=['pytest-runner'],
)