-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
20 lines (19 loc) · 870 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(name='online_dmd',
version='0.1-alpha',
description='a python library implementing Zhang et al. online DMD methods',
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Information Analysis'],
keywords='online dynamic mode decomposition dmd',
url='http://github.com/VArdulov/online_dmd',
author='Victor Ardulov',
author_email='[email protected]',
license='MIT',
packages=['online_dmd'],
install_requires=['numpy'],
include_package_data=True,
zip_safe=False)