-
Notifications
You must be signed in to change notification settings - Fork 863
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.12 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
[tool.poetry]
name = "alibiexplainer"
version = "1.19.0-dev"
description = "Model Explanation Server"
authors = ["Seldon Technologies Ltd. <hello@seldon.io>"]
license = "Business Source License 1.1"
[tool.poetry.dependencies]
python = ">=3.12.0,<3.13"
alibi = {version = "^0.9.6", extras = ["shap"]}
numpy = "1.26.4"
tensorflow = "2.18.1"
scikit-learn = "1.7.2"
xgboost = "1.7.6"
lightgbm = "^4.6.0"
thinc="8.2.5"
safetensors="0.6.2"
pywavelets="1.9.0"
transformers = "^4.53.0"
catboost = "^1.2.8"
tf-keras = "2.18.0"
tornado = "6.5.3"
protobuf = "5.29.5"
joblib = "1.2.0"
requests = "^2.32.5"
urllib3 = "^2.6.0"
jinja2 = "^3.1.6"
werkzeug = "^3.1.3"
pillow = "^10.4.0"
certifi = "^2024.7.4"
fonttools = "^4.43.0"
idna = "^3.7"
pydantic = "^1.10.13"
tqdm = "^4.66.3"
[tool.poetry.group.dev.dependencies]
pytest = "8.4.2"
pytest-tornasync = "^0.6.0"
mypy = "1.18.2"
grpcio-tools = "1.70.0"
mypy-protobuf = "3.5.0"
pip-licenses = "5.5.0"
black = "25.9.0"
isort = "7.0.0"
types-requests = "2.26.0"
gcsfs = "2025.9.0"
requests-mock = "1.9.3"
pip-audit = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"