-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.05 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
[tool.black]
line-length = 90
target-version = ["py39"]
[tool.isort]
src_paths = ["mdla"]
profile = "black"
line_length = 90
lines_after_imports = 2
[tool.poetry]
name = "mdla"
version = "1.0.3"
description = "Multivariate Dictionary Learning Algorithm"
authors = ["Sylvain Chevallier <[email protected]>"]
readme = "README.md"
repository = "https://github.com/sylvchev/mdla"
documentation = "http://github.com/sylvchev/mdla"
keywords = ["sparse decomposition", "dictionary learning", "multivariate signal", "eeg"]
license = "BSD-3-Clause"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
numpy = "^1.26.0"
scipy = "^1.11.3"
scikit-learn = "^1.3.1"
matplotlib = "^3.8.0"
cvxopt = "^1.3.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.4.0"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"