Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
from setuptools import setup, Command
import os
import sys
import pydmd
# Package meta-data.
NAME = pydmd.__title__
DESCRIPTION = 'Python Dynamic Mode Decomposition.'
URL = 'https://github.com/mathLab/PyDMD'
MAIL = pydmd.__mail__
AUTHOR = pydmd.__author__
VERSION = pydmd.__version__
KEYWORDS='dynamic-mode-decomposition dmd mrdmd fbdmd cdmd'
REQUIRED = [
'future', 'numpy', 'scipy', 'matplotlib',
]
EXTRAS = {
'docs': ['Sphinx==1.4', 'sphinx_rtd_theme'],
}
LDESCRIPTION = (
"PyDMD is a Python package that uses Dynamic Mode Decomposition for "
"a data-driven model simplification based on spatiotemporal coherent "
"structures.\n"