-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
32 lines (29 loc) · 888 Bytes
/
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
from setuptools import setup, find_packages
from emdp import __version__
base_requirements = ['numpy>=1.9.1']
extras = {
'tests': ['gym', 'matplotlib'],
'gym': ['gym']
}
setup(
name='emdp',
version=__version__,
description='Easy MDPs',
long_description=open('README.md', encoding='utf-8').read(),
url='https://github.com/zafarali/emdp',
author='Zafarali Ahmed',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
python_requires='>=3.5',
extras_require=extras,
install_requires=base_requirements,
)