-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
70 lines (61 loc) · 1.49 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "EMD-signal"
dynamic = ["version"]
description = "Implementation of the Empirical Mode Decomposition (EMD) and its variations"
readme = "README.md"
license = "Apache-2.0"
authors = [{ name = "Dawid Laszuk", email = "pyemd@dawid.lasz.uk" }]
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",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.12",
"scipy>=0.19",
"pathos>=0.2.1",
"tqdm>=4.64.0,<5.0",
]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx_rtd_theme",
"numpydoc",
]
jit = [
"numba>=0.62.0; python_version>='3.10'",
]
dev = [
"pycodestyle==2.11.*",
"black==25.11.*",
"isort==5.12.*",
"nox",
]
test = [
"pytest",
"codecov",
]
[project.urls]
Homepage = "https://github.com/laszukdawid/PyEMD"
Repository = "https://github.com/laszukdawid/PyEMD"
[tool.setuptools.dynamic]
version = { attr = "PyEMD.__version__" }
[tool.setuptools.packages.find]
include = ["PyEMD*"]
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
[tool.ruff]
line-length = 120
[tool.pycodestyle]
max-line-length = 120
ignore = ["E203", "W503", "W605"]