-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
120 lines (107 loc) · 2.53 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{name = "Richard M. Köhler", email = "[email protected]"},
]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dependencies = [
"mne>=1.0",
"mne-qt-browser",
"psutil",
"pte",
"pte-decode",
"pte-stats==0.3.0",
"py_neuromodulation",
"pyqt5",
"pyvistaqt",
"qdarkstyle",
"rtree",
"trimesh",
"pluggy>=1.3",
"pytask>=0.4",
]
description = "Code used for investigation of motor intention in Parkinson's disease patients."
dynamic = ["version"]
name = "motor-intention"
readme = "README.md"
requires-python = "==3.10.*"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"packaging",
"pandas-stubs",
"pre-commit",
"pytest",
"pytest-cov",
"ruff",
]
[project.urls]
"Bug Tracker" = "https://github.com/richardkoehler/paper-motor-intention/issues"
Changelog = "https://github.com/richardkoehler/paper-motor-intention/releases"
Discussions = "https://github.com/richardkoehler/paper-motor-intention/discussions"
Homepage = "https://github.com/richardkoehler/paper-motor-intention"
[tool.hatch]
version.path = "src/motor_intention/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/src/motor_intention",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["src/motor_intention"]
[tool.pytest.ini_options]
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
filterwarnings = [
"error",
]
log_cli_level = "INFO"
minversion = "6.0"
testpaths = [
"tests",
]
xfail_strict = true
[tool.mypy]
files = ["src", "tests"]
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = "motor_intention.*"
[tool.black]
line-length = 79
extend-exclude = ["matlab", "granger_causality"]
[tool.ruff]
line-length = 79
extend-exclude = ["matlab", "granger_causality"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
isort.required-imports = ["from __future__ import annotations"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
"tests/**" = ["T20"]