https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: 7361a883e21bf92a9a62abfeaceffc38e91955b9 authored by Dawid on 23 May 2023, 21:48:42 UTC
Fix sort
Tip revision: 7361a88
setup.cfg
[metadata]
name = EMD-signal
version = attr: PyEMD.__version__
author = Dawid Laszuk
author_email = pyemd@dawid.lasz.uk
description = Implementation of the Empirical Mode Decomposition (EMD) and its variations
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/laszukdawid/PyEMD
license = Apache-2.0
keywords = signal decomposition data analysis
classifiers = 
    Intended Audience :: Information Technology
    Intended Audience :: Science/Research
    Topic :: Scientific/Engineering
    Topic :: Scientific/Engineering :: Information Analysis
    Topic :: Scientific/Engineering :: Mathematics

[options]
packages = find:
install_requires =
    numpy >= 1.12
    scipy >= 0.19
    pathos >= 0.2.1
    tqdm == 4.64.*
python_requires = >=3.6, <4
test_suite = PyEMD.tests

[options.extras_require]
doc =
    sphinx
    sphinx_rtd_theme
    numpydoc
jit =
    numba==0.56.*
dev =
    pycodestyle==2.8.*
    black==23.3.*
    isort==5.10.*
    click==8.0.4
test =
    pytest
    codecov


[pycodestyle]
max-line-length = 120
ignore = E203,W503,W605
back to top