-
Notifications
You must be signed in to change notification settings - Fork 126
/
setup.py
41 lines (38 loc) · 1.24 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
from setuptools import setup, find_packages
import deer
NAME = 'deer'
VERSION = '0.4.3'
AUTHOR = "Vincent Francois-Lavet"
AUTHOR_EMAIL = "[email protected]"
URL = 'https://github.com/VinF/deer'
DESCRIPTION = 'Framework for deep reinforcement learning'
with open('README.rst') as f:
LONG_DESCRIPTION = f.read()
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
]
if __name__ == '__main__':
setup(name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license='BSD',
classifiers=CLASSIFIERS,
platforms='any',
packages=find_packages())