-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (85 loc) · 1.69 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.5,<4"]
[project]
authors = [
{name = "Richard M. Köhler"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "an open-source software package for neural decoding. ."
dynamic = ["version"]
keywords = ["machine learning", "bci", "eeg", "ieeg"]
license = {file = "LICENSE"}
maintainers = [
{name = "Richard M. Köhler"},
]
name = "pte-decode"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
dependencies = [
"bayesian-optimization",
"catboost",
"imbalanced-learn",
"joblib",
"matplotlib",
"mne",
"mne-bids",
"numba",
"numpy",
"pandas",
"pip",
"pte",
"pte-stats",
"scikit-learn",
"scipy",
"statannotations",
"xgboost",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"mypy",
"pylint",
"pytest",
"pytest-cov",
]
[project.urls]
bugtracker = "https://github.com/richardkoehler/pte-decode/issues"
changelog = "https://github.com/richardkoehler/pte-decode/blob/main/doc/CHANGELOG.md"
repository = "https://github.com/richardkoehler/pte-decode"
[tool.flit.module]
name = "pte_decode"
[tool.black]
exclude = '''
/(
__pycache__
)/
'''
include = '''
(
/tests
| /src/
)
'''
line-length = 79
target-version = ['py310']
[tool.isort]
line_length = 79
profile = "black"
py_version = 310
src_paths = ["pte_decode"]
[tool.mypy]
python_version = "3.10"
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"numba",
"skimage",
"statsmodels.stats.multitest",
]