-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
87 lines (75 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[project]
name = "trustyai"
version = "0.6.1"
description = "Python bindings to the TrustyAI explainability library."
authors = [{ name = "Rui Vieira", email = "[email protected]" }]
license = { text = "Apache License Version 2.0" }
readme = "README.md"
requires-python = ">=3.8"
keywords = ["trustyai", "xai", "explainability", "ml"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Java",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Java Libraries",
]
dependencies = [
"Jpype1==1.5.0",
"pyarrow==17.0.0",
"matplotlib~=3.6.3",
"pandas~=1.5.3",
"numpy~=1.24.1",
"jupyter-bokeh~=3.0.5",
]
[project.optional-dependencies]
dev = [
"JPype1==1.5.0",
"black~=22.12.0",
"click==8.0.4",
"joblib~=1.2.0",
"jupyterlab~=3.5.3",
"numpydoc==1.5.0",
"pylint==2.15.6",
"pytest~=7.2.1",
"pytest-benchmark==4.0.0",
"pytest-forked~=1.6.0",
"scikit-learn~=1.2.1",
"setuptools",
"twine==3.4.2",
"wheel~=0.38.4",
"xgboost==1.4.2",
]
extras = ["aix360[default,tsice,tslime,tssaliency]==0.3.0"]
detoxify = [
"transformers~=4.36.2",
"datasets",
"scipy~=1.12.0",
"torch~=2.2.1",
"iter-tools",
"evaluate",
"trl",
]
api = ["kubernetes"]
[project.urls]
homepage = "https://github.com/trustyai-explainability/trustyai-explainability-python"
documentation = "https://trustyai-explainability-python.readthedocs.io/en/latest/"
repository = "https://github.com/trustyai-explainability/trustyai-explainability-python"
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.pytest.ini_options]
log_cli = true
addopts = '-m="not block_plots"'
markers = [
"block_plots: Test plots will block execution of subsequent tests until closed",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]