-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.18 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
[tool.poetry]
name = "re_classwise_shapley"
version = "1.0.0"
description = "Reproduction of the paper 'CS-Shapley: Class-wise Shapley Values for Data Valuation in Classification'"
authors = ["Markus Semmler"]
license = "LGPL-3.0"
readme = "README.md"
packages = [{ include = "re_classwise_shapley", from = "src" }]
[tool.poetry.dependencies]
python = "~3.10"
numpy = "^1.25.2"
pandas = "^1.5.3"
scikit-learn = "^1.3.0"
matplotlib = "^3.6.3"
seaborn = "^0.13.1"
dvc = "^3.15.2"
tqdm = "^4.64.1"
torch = "2.1.2"
torchvision = "0.16.2"
openml = "^0.13.0"
click = "^8.1.3"
mlflow = "^2.9.2"
boto3 = "^1.28.36"
plotly = "^5.16.1"
dataframe_image = "^0.2.3"
python-dotenv = "^1.0.1"
pyDVL = {version="0.9.1", extras=["memcached"]}
python-memcached = "1.62"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Black-compatible settings for isort
# See https://black.readthedocs.io/en/stable/compatible_configs.html
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
mypy_path = './src/'
ignore_missing_imports = true
warn_return_any = true
warn_unused_configs = true
[tool.black]
line-length = 88