-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (63 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (63 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
66
67
68
[project]
name = "shap-bounds"
version = "0.0.1"
description = "Compute certified bounds in SHAP values."
readme = "README.md"
authors = [
{ name = "David Boetius", email = "david.boetius@uni-konstanz.de" }
]
requires-python = ">=3.12"
dependencies = [
"formalax @ file:///${PROJECT_ROOT}/dependencies/formalax",
"jax==0.8.1",
"jaxtyping==0.3.3",
"numpy==2.3.2",
"scipy==1.16.1",
"pyarrow>=21.0,<23.0"
]
[project.optional-dependencies]
experiments = [
"equinox==0.13.0",
"optax==0.2.6",
"shap==0.50.0",
"torch==2.8.0",
"torchvision==0.23.0",
"scikit-learn==1.7.2",
"scikit-image==0.25.2",
"ucimlrepo==0.0.7",
"kagglehub==0.3.13",
"medmnist==3.0.2",
"pandas==2.3.1",
"Pillow==12.0.0",
"seaborn==0.13.2",
"requests==2.32.4",
"ruamel.yaml==0.18.16",
"tqdm==4.67.1",
"psutil==7.1.3",
"py-cpuinfo==9.0.0",
"GPUtil==1.4.0",
"PyQT6==6.10.1",
"matplotlib==3.10.7",
"seaborn==0.13.2",
"cmcrameri==1.9.0",
"colour-science==0.4.7",
"xgboost==2.0.3",
"numba==0.63.0b1",
]
test = ["pytest==9.0.1"]
extra = ["jupyter==1.1.1","tqdm==4.67.1"]
develop = ["ruff==0.14.4"]
all = ["shap-bounds[experiments,extra,develop]"]
[build-system]
requires = ["uv_build>=0.8.6,<0.9.0"]
build-backend = "uv_build"
[tool.ruff]
indent-width = 4
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "W", "I", "N", "ICN", "PT", "Q"]
ignore = ["F722"] # jax typing
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
line-ending = "lf"
docstring-code-format = true