-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (68 loc) · 2.07 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "amber-som"
version = "2.2.0"
description = "Open-source Python library for Self-Organizing Maps (SOMs)"
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{name = "Alberto Nogales", email = "alberto.nogales@uah.es"},
{name = "Miguel Ángel Sicilia"},
{name = "Elena García Barriocanal"},
{name = "Marçal Mora Cantallops"},
{name = "Alberto Ballesteros Rodríguez"},
]
requires-python = ">=3.9"
keywords = [
"self-organizing-map", "SOM", "kohonen", "unsupervised-learning",
"clustering", "neural-network", "time-series", "biosignals", "EEG",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"numpy>=1.21",
"pandas>=1.3",
"matplotlib>=3.5",
"plotly>=5.0",
"tqdm>=4.0",
"scikit-learn>=1.0",
]
[project.urls]
Homepage = "https://github.com/albertonogales/AMBER"
Documentation = "https://amber-som.readthedocs.io/"
Changelog = "https://github.com/albertonogales/AMBER/blob/main/CHANGELOG.md"
Source = "https://github.com/albertonogales/AMBER"
"Bug Tracker" = "https://github.com/albertonogales/AMBER/issues"
[project.optional-dependencies]
spectral = ["scipy>=1.7"]
mfcc = ["librosa>=0.9"]
dev = [
"scipy>=1.7",
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"mypy>=1.8",
]
[tool.setuptools.packages.find]
exclude = ["tests*", "examples*"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"] # line-length handled above
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
no_strict_optional = true