forked from david-abel/simple_rl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (17 loc) · 736 Bytes
/
setup.py
File metadata and controls
17 lines (17 loc) · 736 Bytes
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 = 'david_abel@brown.edu',
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 = [],
)