-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.52 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
[tool.poetry]
name = "ngmt"
version = "0.0.4"
description = "The NeuroGeriatricsMotionToolbox (NGMT) is a Python-based toolbox for processing motion data."
license = "MIT"
readme = "README.md"
homepage = "https://neurogeriatricskiel.github.io/NGMT/"
repository = "https://github.com/neurogeriatricskiel/NGMT"
documentation = "https://neurogeriatricskiel.github.io/NGMT"
authors = [
"Masoud Abedinifar <[email protected]>",
"Julius Welzel <[email protected]>",
"Walter Maetzler <[email protected]>",
"Clint Hansen <[email protected]>",
"Robbin Romijnders <[email protected]>"
]
maintainers = [
"Masoud Abedinifar <[email protected]>",
"Julius Welzel <[email protected]>",
"Robbin Romijnders <[email protected]>"
]
packages = [
{ include = "ngmt" },
]
include = ["CHANGELOG.md"]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.13"
pandas = ">=2"
scipy = ">=1.11.0"
numpy = ">=1.25"
pytest = "^7.4.3"
pywavelets = "^1.4.1"
ipykernel = "^6.26.0"
matplotlib = "^3.8.1"
tpcp = "^0.27.0"
qmt = "^0.2.4"
vqf = "^2.0.0"
h5py = "^3.10.0"
polars = "^0.20.5"
seaborn = "^0.13.1"
json-repair = "^0.8.0"
pyarrow = "^15.0.0"
bids-validator = "^1.14.4"
actipy = "^3.0.5"
[tool.poetry.extras]
docs = ["mkdocs", "mkdocs-material", "pymdownx.superfences"]
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.1.0"
pytest = "^7.4.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"