https://github.com/laszukdawid/PyEMD
Raw File
Tip revision: 5a19e2606f0da0cf3b43ec9459d2b175f46f9a97 authored by Dawid Laszuk on 21 March 2024, 04:57:26 UTC
Update CI on the mast to only create package when PyEMD/__init__.py changes (#153)
Tip revision: 5a19e26
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.0, < 5.0
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.11.*
    black==24.3.*
    isort==5.12.*
test =
    pytest
    codecov


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