-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
77 lines (62 loc) · 1.81 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
[tool.poetry]
name = "paat"
version = "1.0.0b7"
description = "A comprehensive toolbox to analyse and model raw physical activity data"
license = "MIT"
authors = ["Marc Weitz <marc.weitz@uit.no>",
"Shaheen Syed",
"Alexander Horsch"]
readme = "README.rst" # Markdown files are supported
repository = "https://github.com/Trybnetic/paat"
homepage = "https://github.com/Trybnetic/paat"
keywords = ["medical-informatics", "physical-activity",
"health-science", "actigraph", "accelerometry"]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12" # Compatible python versions must be declared here
pandas = "^1.5.3"
psutil = "^5.8.0"
glob2 = "^0.7"
resampy = "^0.2.2"
joblib = "^1.0.1"
numpy = "1.23.5"
bitstring = "^3.1.7"
tensorflow = ">=2.11.0,<2.16"
agcounts = "^0.1.1"
toml = "^0.10.2"
tables = "^3.7.0"
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme", "numpydoc", "easydev", "nbsphinx", "docutils"]
[tool.poetry.group.dev.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pycodestyle = "^2.11.1"
flake8 = "^7.0.0"
notebook = "^7.0.7"
seaborn = "^0.13.2"
numpydoc = "^1.6.0"
easydev = "^0.12.1"
pylint = "^3.0.3"
nbsphinx = "^0.9.3"
vulture = "^2.11"
pygt3x = "^0.5.2"
jinja2 = "<3.1.0"
[tool.pylint]
[tool.pylint.basic]
good-names = ["nn", "ii", "_", "jj", "df", "X", "hz", "mm", "kk"]
[tool.pylint.format]
max-line-length = 88
[tool.pylint.message_control]
disable = ["E1101", "C0330", "C0326"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"