-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (65 loc) · 1.72 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
# Based on: https://realpython.com/pypi-publish-python-package/
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "attribench"
version = "0.1.5"
description = "A benchmark for feature attribution techniques"
readme = "README.rst"
authors = [
{ name = "Arne Gevaert", email = "[email protected]" },
{ name = "Axel-Jan Rousseau", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
]
keywords = ["attributions", "benchmark", "explanation", "machine learning"]
dependencies = [
"torch>=1.5.0,<2",
"torchvision>=0.14.0",
"krippendorff>=0.5.0",
"opencv-python>=4.7.0.0",
"scikit-learn>=1.2.0",
"scikit-image>=0.19.0",
"seaborn>=0.12.0",
"statsmodels>=0.14.0",
"h5py",
"tqdm",
"pyyaml",
]
requires-python = ">=3.10"
[tool.setuptools]
packages = ["attribench"]
[project.optional-dependencies]
dev = [
"bumpver",
"pytest"
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"numpydoc",
"sphinx-autodoc-typehints",
"nbsphinx",
"ipython",
"jupyter",
"ipywidgets",
]
[project.urls]
Homepage = "https://github.com/arnegevaert/benchmark"
Documentation = "http://attribench.readthedocs.io/"
[tool.bumpver]
current_version = "0.1.5"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"attribench/__init__.py" = ["{version}"]