-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 827 Bytes
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
[tool.poetry]
name = "blockmatrix"
version = "0.2.2"
description = "Utilities to handle blockmatrices, especially covariance matrices."
authors = ["Jan Sosulski <mail@jan-sosulski.de>"]
keywords = ["block matrix", "numpy", "spatio-temporal data"]
readme = "README.md"
license = "BSD-3-Clause"
homepage = "https://github.com/jsosulski/blockmatrix"
repository = "https://github.com/jsosulski/blockmatrix"
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.8,<3.11"
matplotlib = "^3.5.1"
vg = "^2.0.0"
seaborn = "^0.11.2"
toeplitz = {version="^0.3.2", optional = true}
mne = {version="^0.24.1", optional = true}
[tool.poetry.extras]
solver = ["toeplitz"]
channels = ["mne"]
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"