-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.53 KB
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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xai"
version = "0.3.0"
description = "XAI - An industry-ready machine learning library that ensures explainable AI by design"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Alejandro Saucedo", email = "a@ethical.institute"}
]
keywords = ["xai", "machine learning", "deep learning", "explainability", "bias evaluation"]
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
requires-python = ">=3.9"
dependencies = [
"pandas>=2.0.0,<3.0.0",
"matplotlib>=3.6.0,<4.0.0",
"numpy>=1.23.0",
"scipy>=1.10.0,<2.0.0",
"scikit-learn>=1.2.0,<2.0.0",
"python-dateutil",
"pytz",
"pyparsing",
"cycler",
"kiwisolver",
"six",
]
[project.optional-dependencies]
dev = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"pytest",
"pytest-runner",
]
notebook = [
"jupyter>=1.1.1",
"tensorflow>=2.20.0",
]
[project.urls]
"Homepage" = "https://github.com/EthicalML/XAI"
"Repository" = "https://github.com/EthicalML/XAI"
[project.scripts]
xai-clean = "xai._scripts:clean"
[tool.setuptools]
packages = ["xai", "xai.data"]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["LICENSE"]