-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (51 loc) · 1.27 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
[build-system]
requires = ["setuptools>=61.0", "numpy", "Cython"]
build-backend = "setuptools.build_meta"
[project]
name = "mercury-explainability"
license = {file = "LICENSE.txt"}
version = "0.0.3"
authors = [
{ name="Mercury Team", email="mercury.group@bbva.com" },
]
description = "Mercury's explainability is a library with implementations of different state-of-the-art methods in the field of explainability"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'pandas<2.0.0',
'numpy>=1.13.1',
'bokeh>=0.12.13',
'simanneal>=0.4.1',
'shap<0.36',
'dill>=0.3.1',
'Cython',
'graphviz',
]
[project.optional-dependencies]
dev = [
'pyspark>=3.0.2',
'pytest',
'flake8',
'scikit-learn',
'alibi',
'tensorflow'
]
doc = [
'mkdocs',
'mkdocstrings[python]',
'mkdocs-material',
'mkdocs-minify-plugin==0.5.0',
'mkdocs-exclude',
'nbconvert',
]
[tool.setuptools.packages.find]
include = ["mercury*"]
exclude = ["docs*", "tests*", "tutorials"]
[project.urls]
"Homepage" = "https://github.com/BBVA/mercury-explainability"
"Bug Tracker" = "https://github.com/BBVA/mercury-explainability/issues"