forked from PyDMD/PyDMD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.05 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
from setuptools import setup
def readme():
"""
This function just return the content of README.md
"""
with open('README.md') as f:
return f.read()
setup(name='pydmd',
version='0.1.0',
description='Python Dynamic Mode Decomposition.',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords='dynamic-mode-decomposition dmd mrdmd fbdmd cdmd',
url='https://github.com/mathLab/PyDMD',
author='Nicola Demo, Marco Tezzele',
author_email='[email protected], [email protected]',
license='MIT',
packages=['pydmd'],
install_requires=[
'future',
'numpy',
'scipy',
'matplotlib',
'Sphinx==1.4',
'sphinx_rtd_theme'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)