-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.22 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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "run_decoding_across_patients"
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 = ["py-neuromodulation", "skops>=0.9.0"]
[project.optional-dependencies]
dev = ["black", "pytest", "pytest-cov"]
[project.urls]
bugtracker = "https://github.com/neuromodulation/AcrossPatientDecodingModel/issues"
repository = "https://github.com/neuromodulation/AcrossPatientDecodingModel"
[tool.black]
exclude = '''
/(
__pycache__
)/
'''
include = '''
(
/src/
# | /tests
)
'''
line-length = 80
target-version = ['py310']
[tool.flit.module]
name = "src"