-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (40 loc) · 1.25 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
[project]
name = "slise"
version = "2.2.4"
authors = [{ name = "Anton Björklund", email = "[email protected]" }]
description = "The SLISE algorithm for robust regression and explanations of black box models"
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"Robust regression",
"Sparse Linear Regression",
"Explainable Artificial Intelligence",
"Local Explanations",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
]
requires-python = ">=3.6"
dependencies = [
"numpy >= 1.20",
"scipy >= 1.6",
"numba >= 0.53",
"matplotlib >= 3.3",
"PyLBFGS >= 0.2",
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "black[jupyter]", "pylint", "IPython", "ruff"]
tbb = ["tbb"]
[project.urls]
homepage = "https://edahelsinki.fi/pyslise"
documentation = "https://edahelsinki.fi/pyslise/docs/slise/"
repository = "https://github.com/edahelsinki/pyslise.git"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["slise"]