-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
100 lines (92 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "slisemap"
version = "1.6.2"
authors = [
{ name = "Anton Björklund", email = "anton.bjorklund@helsinki.fi" },
{ name = "Kai Puolamäki", email = "kai.puolamaki@helsinki.fi" },
{ name = "Lauri Seppäläinen" },
{ name = "Jarmo Mäkelä" },
]
description = "SLISEMAP: Combine local explanations with supervised dimensionality reduction"
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"Explainable AI",
"Local explanation",
"Dimensionality reduction",
"Manifold visualization",
]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy >= 1.19",
"torch >= 1.9",
"scikit-learn >= 0.24",
"matplotlib >= 3.3",
"seaborn >= 0.11",
]
[project.optional-dependencies]
tuning = ["scikit-optimize >= 0.9", "scipy >= 0.17"]
dev = ["pytest", "pytest-cov", "black[jupyter]", "ruff", "jupyter", "IPython"]
[project.urls]
homepage = "https://github.com/edahelsinki/slisemap"
documentation = "https://edahelsinki.github.io/slisemap"
repository = "https://github.com/edahelsinki/slisemap.git"
[tool.setuptools]
packages = ["slisemap"]
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_also = [
"_deprecated",
"print",
"plt.show",
"if verbose",
"ImportError",
"_warn",
]
[tool.ruff.lint]
select = [
"I",
"E",
"F",
"B",
"C4",
"W",
"D",
"UP",
"ANN",
"SIM",
"RUF",
"S",
"N",
]
ignore = [
"E501",
"B006",
"D105",
"D203",
"D204",
"D406",
"D213",
"D407",
"D413",
"ANN101",
"ANN102",
"ANN401",
"S101",
"N802",
"N803",
"N806",
]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D", "ANN"]