forked from givasile/effector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.11 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ['effector']
package-dir = {'effector'='effector'}
[project]
name = "effector"
description = "A Python library for global and regional effects"
authors = [{name = "Vasilis Gkolemis", email = "[email protected]"}]
maintainers = [
{name = "Julia Herbinger", email = "[email protected]"},
{name = "Christos Diou", email = "[email protected]"},
{name = "Giuseppe Casalicchio", email = "[email protected]"}
]
license = {text = "MIT License"}
requires-python = ">=3.7"
keywords = ["explainability", "machine learning", "deep learning", "interpretability", "feature effect"]
version = "0.0.273"
readme = "README.md"
dependencies = [
"matplotlib",
"numpy",
"scipy",
"tqdm",
"shap"
]
[project.urls]
documentation = "https://xai-effector.github.io"
source = "https://github.com/givasile/effector"
tracker = "https://github.com/givasile/effector/issues"
[project.optional-dependencies]
tutorials = ["ipython", "pandas", "tensorflow", "keras", "ucimlrepo", "jupyter"]