-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.23 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
from setuptools import setup, find_packages
long_description = '''
Pavlov is a modular, composable reinforcement learning API,
with models written in Keras with a Tensorflow backend.
Use Pavlov if you want a reinforcement learning library that:
- Allows for easy and fast composition of various
algorithms, exploration strategies, and state preprocessors
- Allows for arbitrarily defined custom network architectures
- Works with any environment that follows the OpenAI Gym interface
- Comes with its own Docker image for both GPU and CPU usage
Pavlov is distributed under the MIT license.
'''
with open('VERSION') as f:
version = f.read().strip()
setup(name='Pavlov',
version=version,
description='A modular reinforcement learning pipeline with Keras',
long_description=long_description,
author='Nash Taylor',
author_email='[email protected]',
url='https://github.com/ntaylorwss/pavlov',
download_url='https://github.com/ntaylorwss/pavlov/archive/master.zip',
license='MIT',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
])