forked from david-abel/simple_rl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
17 lines (17 loc) · 736 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
from setuptools import find_packages
exec(open('simple_rl/_version.py').read())
setup(
name = 'simple_rl',
packages = find_packages(),
scripts=['simple_rl/run_experiments.py'],
version=__version__,
description = 'A simple framework for experimenting with Reinforcement Learning in Python.',
long_description = 'A simple framework for experimenting with Reinforcement Learning in Python.',
author = 'David Abel',
author_email = '[email protected]',
url = 'https://github.com/david-abel/simple_rl',
download_url = 'https://github.com/david-abel/simple_rl/tarball/' + str(__version__),
keywords = ['Markov Decision Process', 'MDP', 'Reinforcement Learning'],
classifiers = [],
)