-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
52 lines (46 loc) · 1.21 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "survlimepy"
version = "0.0.11"
description = "A python package implementing SurvLIME algorithm"
authors = [
{name = "Carlos Hernández Pérez", email = "[email protected]"},
{name = "Cristian Pachón García", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"cvxpy",
"scikit-survival==0.18.0",
"scikit-learn==1.1.2",
"pandas",
"tqdm",
"seaborn",
"matplotlib",
]
keywords = [
"Interpretable Machine Learning",
"eXplainalbe Artificial Intelligence",
"Survival Analysis",
"Machine Learning",
"Python",
]
[project.optional-dependencies]
dev = ["pytest", "black"]
[project.urls]
documentation = "https://github.com/imatge-upc/SurvLIMEpy"
repository = "https://github.com/imatge-upc/SurvLIMEpy"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"survlimepy.datasets" = ["*.csv"]
[tool.black]
line-length = 88
skip-string-normalization = true