-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (40 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "explainx"
version = "3.0.0"
description = "LLM-native model explainability: structured, agent-callable explanations, bias detection and counterfactuals for any scikit-learn-compatible model."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "explainX" }]
keywords = ["explainability", "interpretability", "xai", "shap", "fairness", "bias", "mcp", "llm", "counterfactual"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.23",
"pandas>=1.5",
"scikit-learn>=1.1",
"joblib>=1.2",
]
[project.optional-dependencies]
shap = ["shap>=0.44"]
mcp = ["mcp>=1.0.0"]
drift = ["scipy>=1.7"] # enables the Kolmogorov-Smirnov drift test (PSI works without it)
llm = ["anthropic>=0.40"] # LLM narration of reports via Claude
dashboard = ["streamlit>=1.30"] # interactive web dashboard (explainx-dashboard)
all = ["shap>=0.44", "mcp>=1.0.0", "scipy>=1.7", "anthropic>=0.40", "streamlit>=1.30"]
dev = ["pytest>=7.0", "shap>=0.44", "mcp>=1.0.0", "scipy>=1.7", "anthropic>=0.40", "streamlit>=1.30"]
[project.scripts]
explainx-mcp = "explainx.mcp_server:main"
explainx-dashboard = "explainx.dashboard:launch"
explainx = "explainx.cli:main"
[tool.setuptools.packages.find]
include = ["explainx*"]
[tool.pytest.ini_options]
testpaths = ["explainx/tests"]