-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
90 lines (84 loc) · 2.12 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
[tool.poetry]
name = "gaitmap"
version = "2.0.1"
description = "The Gait and Movement Analysis Package - Your definite guide to reliable IMU based human movement analysis."
authors = [
"Arne Küderle <[email protected]>",
"Martin Ullrich <[email protected]>",
"Nils Roth <[email protected]>",
"Malte Ollenschläger <[email protected]>",
"Alzhraa Ahmed <[email protected]>",
"Raul C. Sîmpetru <[email protected]>",
"Dominik Prossel <[email protected]>",
"Liv Herzer <[email protected]>",
"Felix Kluge <[email protected]>"
]
packages = [
{ include = "gaitmap" },
{ include = "gaitmap_mad", from = "gaitmap_mad"}
]
[tool.poetry.dependencies]
python = ">=3.8.0,<3.11"
pandas = ">=1"
scipy = ">=1.6.1,<2.0.0"
typing_extensions = ">=4.1.1"
numba = [
{version = "^0", python = "<3.9"},
{version = ">=0.55,<1.0.0", python = "^3.10"},
{version = ">=0.53,<1.0.0", python = ">=3.9,<3.10"},
{version = ">=0.55.2,<1.0.0", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"}
]
numpy = ">=1"
joblib = "^1.0.0"
scikit-learn = "^1.0.1"
tpcp = ">=0.6.3, <1.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
pytest-cov = "^2.8.1"
prospector = "^1.7.7"
black = "^22.3.0"
recommonmark = "^0.6.0"
coverage = "^6.3.2"
doit = "^0.32.0"
ipykernel = "^5.2.0"
IPython = "^7.13.0"
ipympl = "^0.5.6"
memory_profiler = "^0.57.0"
toml = "^0.10.1"
mypy = "^0.790"
pytest-xdist = "^2.2.0"
isort = "^5.9.3"
gaitmap-mad = {path = "gaitmap_mad", develop = true}
sphinx-gallery = "^0.10.1"
pydata-sphinx-theme = "^0.9.0"
numpydoc = "^1.4.0"
Sphinx = ">=4.0.0,<5.0"
[tool.black]
line-length = 120
target-version = ['py38']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| _debug_test
| docs
| build
| dist
| \.virtual_documents
)/
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120
skip_gitignore = true
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"