-
Notifications
You must be signed in to change notification settings - Fork 224
/
setup.cfg
47 lines (43 loc) · 1.07 KB
/
setup.cfg
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
40
41
42
43
44
45
46
47
[metadata]
name = EMD-signal
version = attr: PyEMD.__version__
author = Dawid Laszuk
author_email = [email protected]
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