-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
84 lines (80 loc) · 1.76 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
[build-system]
requires = [
"meson-python",
"wheel",
"numpy>=2.0.0rc1"
]
build-backend = "mesonpy"
[project]
name = "scikit-digital-health"
dynamic = [
'version'
]
description = "Python general purpose human motion inertial data processing package."
readme = "README.md"
license = { file = 'LICENSE' }
keyword = [
'IMU',
'inertial data',
'gait',
'sit-to-stand',
's2s',
'sleep',
'activity',
'actigraphy',
'wear detection',
'time series signal features',
]
authors = [
{ name = "Lukas Adamowicz", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Fortran",
"Programming Language :: C",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.25.0",
"scipy>=1.12.0",
"pandas>=1.0.0",
"lightgbm>=2.3.0",
"pywavelets",
"scikit-learn",
"h5py",
"matplotlib",
"packaging",
"pyyaml",
"avro",
]
[project.optional-dependencies]
dev = [
'pytest',
'coverage',
'psutil',
# 'tables',
"numpy>=2.0.0rc1"
]
actions = [
'flake8',
'wheel'
]
docs = [
"numpydoc",
"sphinx>=2.2.0",
"pydata-sphinx-theme",
"sphinx-design"
]
[project.urls]
homepage = "https://github.com/pfizer-opensource/scikit-digital-health"
documentation = "https://scikit-digital-health.readthedocs.io/en/latest/"