forked from jz95/RLPractical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 701 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='rlp',
version='0.1',
description='Reinforcement learning algorithm implements',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: MacOS X',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3.5',
],
url='https://github.com/JZ95/RLPractical',
author='JZhou',
author_email='j.zhou0518@gmail.com',
license='GPLv3',
packages=['rlp'],
install_requires=[
'numpy',
'tqdm',
'jupyter'
],
zip_safe=False)