-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
95 lines (87 loc) · 2.07 KB
/
pyproject.toml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "dispel/_version.py"
[project]
name = "dispel"
authors = [
{name = "Alf Scotland and Gautier Cosne and Adrien Juraver and Angelos Karatsidis and Joaquin Penalver de Andres"},
]
description = "A python DIgital Signal ProcEssing Library developed to standardize extraction of sensor-derived measures (SDMs) from wearables or smartphones data."
readme = "README.md"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
requires-python = ">=3.8"
dependencies = [
'networkx',
'pandas==1.3.5',
'numpy',
'scipy',
'scikit-learn',
'fastdtw',
'gatspy',
'ground>=2.0.5',
'bentley_ottmann>=1.0.0',
'deprecated',
'packaging',
'jellyfish',
'PyWavelets',
'multimethod==1.5',
'soundfile',
'unidecode==1.2.0',
'numpy-quaternion==2022.4.3',
'h5py',
'wrapt==1.14.0'
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
'docutils',
'sphinx',
'urllib3<2', # addressing LibreSSL issue on M1 Mac
'jinja2',
'numpydoc',
'pydata_sphinx_theme',
'sphinxcontrib-mermaid',
'sphinx_mdinclude',
'sphinx-plotly-directive'
]
dev = [
'coverage',
'ruff',
'black',
'isort',
'doc8',
'mypy',
'types-docutils',
'types-Jinja2',
'types-Deprecated',
'pre-commit',
'pytest',
'pytest-cov',
'pytest-doctestplus',
'pytest-profiling',
'pytest-runner',
'pytest-sphinx',
'pytest-sugar',
'pytest-icdiff',
'pytest-deadfixtures',
'pytest-xdist',
'watchdog',
]
[tool.pytest.ini_options]
addopts = "-n auto"
junit_family = "xunit2"
testpaths = ["tests",]
[tool.ruff]
select = ["D"]
ignore = ["D105"] # D105: Missing docstring in magic method
[tool.ruff.pydocstyle]
convention = "numpy"