-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.19 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
[tool.poetry]
name = "toeplitzlda"
version = "0.3.0"
description = "Implementation of LDA using a block-Toeplitz structured covariance matrix for stationary spatiotemporal data."
authors = ["Jan Sosulski <[email protected]>"]
keywords = [
"linear discriminant analysis",
"spatiotemporal data",
"ERP",
"BCI",
"EEG",
]
readme = "README.md"
license = "BSD-3-Clause"
homepage = "https://github.com/jsosulski/toeplitzlda"
repository = "https://github.com/jsosulski/toeplitzlda"
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8,<3.12"
numpy = "^1.22.1"
# blockmatrix = "^0.2.0"
blockmatrix = { path = "../blockmatrix" }
scikit-learn = "^1.0"
toeplitz = { version = "0.3.2", optional = true }
pandas = { version = "^1.4.0", optional = true }
mne = { version = "^1", optional = true }
moabb = { version = "^1", optional = true }
seaborn = { version = "^0.12", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^7"
[tool.poetry.extras]
solver = ["toeplitz"]
neuro = ["mne", "moabb", "pandas", "seaborn"]
[tool.poetry.urls]
"Preprint" = "https://arxiv.org/abs/2202.02001"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100