forked from neuromodulation/py_neuromodulation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (73 loc) · 1.55 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "py_neuromodulation"
version = "0.0.1"
authors = [{name = "Timon Merk", email="[email protected]"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License ",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
description = "Real-time analysis of intracranial neurophysiology recordings."
keywords = [
"real-time",
"eeg",
"ieeg",
"dbs",
"ecog",
"electrocorticography",
"deep-brain-stimulation",
"machine-learning",
]
license = {file = "LICENSE"}
maintainers = [{name = "Timon Merk"}]
readme = "README.rst"
requires-python = ">=3.10"
dependencies = [
"mne",
"filterpy >= 1.4.5",
"fooof",
"imbalanced-learn",
"matplotlib >= 3.3.4",
"mne-bids >= 0.8",
"mne-connectivity",
"mrmr-selection",
"nolds",
"numpy >= 1.21.2",
"pandas >= 1.2.2",
"pip",
"pynput",
"pybids",
"scikit-image",
"scikit-learn >= 0.24.2",
"scikit-optimize",
"scipy >= 1.7.1",
"seaborn >= 0.11",
"notebook",
"ipython",
"pybispectra>=1.1.0"
]
[project.optional-dependencies]
dev = ["black", "pytest", "pytest-cov"]
[project.urls]
bugtracker = "https://github.com/neuromodulation/py_neuromodulation/issues"
repository = "https://github.com/neuromodulation/py_neuromodulation"
[tool.black]
exclude = '''
/(
__pycache__
)/
'''
include = '''
(
/src/
# | /tests
)
'''
line-length = 80
target-version = ['py310']
[tool.flit.module]
name = "py_neuromodulation"