-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (64 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "spectral"
authors = [{ name = "Daniel Borek", email = "[email protected]" }]
readme = "README.md"
version = "0.0.1.dev0"
description = "Project for working with electrophysiological data"
license = { file = "LICENSE" }
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.10"
dependencies = [
"mne",
"specparam>=2.0.0rc1",
"numpy",
"pandas",
"seaborn",
"mne_bids",
"matplotlib",
"geopandas"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-watcher",
"pytest-mock",
"pytest-notebook",
"nbval",
"pre-commit",
"nbstripout"
]
[tool.setuptools.packages.find]
include = ["spectral*"]
namespaces = false
[tool.pytest.ini_options]
pythonpath = [
"."
]
addopts = "-v"
testpaths = ["docs"]
[tool.black]
line-length = 88
target-version = ['py310', 'py311']
include = '\.pyi?$'
# iSort
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = [
'__init__.py:F401',
]
max-line-length = 88
count = true
[tool.pytest-watcher]
now = false
delay = 1.0
runner = "pytest"
patterns = ["*.ipynb"]
ignore_patterns = []