-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
122 lines (112 loc) · 2.33 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
121
122
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
authors = [
{name = "Richard M. Köhler"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
description = "An open-source software package for working with electrophysiological data"
dynamic = ["version"]
keywords = ["eeg", "ieeg", "dbs", "ecog", "lfp", "neurophysiology"]
license = {file = "LICENSE"}
maintainers = [
{name = "Richard M. Köhler"},
]
name = "pte"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
dependencies = [
"joblib",
"matplotlib",
"mne[hdf5]>=1.0",
"mne-bids",
"numba",
"numpy",
"pandas",
"plotly",
"pte-stats",
"pybv",
"scikit-image",
"scipy",
"mne-qt-browser",
"pyqt5",
]
[project.optional-dependencies]
dev = [
"black",
"hatch",
"mypy",
"packaging",
"pandas-stubs",
"pre-commit",
"pytest",
"pytest-cov",
"ruff",
"tox",
]
[project.urls]
bugtracker = "https://github.com/richardkoehler/pte/issues"
changelog = "https://github.com/richardkoehler/pte/blob/main/docs/CHANGELOG.md"
repository = "https://github.com/richardkoehler/pte"
[tool.black]
line-length = 79
[tool.hatch]
version.path = "src/pte/__init__.py"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"joblib",
"matplotlib",
"matplotlib.figure",
"mne",
"mne_bids",
"mne_bids.copyfiles",
"mne_bids.path",
"mpl_toolkits.axes_grid1",
"numba",
"numpy",
"pandas",
"plotly",
"pte_stats",
"pybv",
"scipy",
"scipy.io",
"scipy.ndimage",
"scipy.signal",
"scipy.stats",
"skimage",
"statsmodels.stats.multitest",
]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401", "F403"]