-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.27 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "visualime"
description = "Implementation of LIME focused on producing user-centric local explanations for image classifiers."
requires-python = ">=3.8"
authors = [
{ name = "Kilian Kluge", email = "[email protected]" },
{ name = "The VisuaLIME developers", email = "[email protected]" }
]
readme = "README.md"
license = { text = "Apache 2.0 License" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dynamic = ["version", "dependencies"]
[project.urls]
"Documentation" = "https://visualime.readthedocs.io/"
"Repository" = "https://github.com/xai-demonstrator/visualime"
"Bug Tracker" = "https://github.com/xai-demonstrator/visualime/issues"
[tool.setuptools]
packages = ["visualime"]
[tool.setuptools.dynamic]
version = { attr = "visualime.__version__" }
dependencies = { file = "requirements.txt" }
[tool.mypy]
python_version = "3.10"
warn_return_any = false
plugins = ["numpy.typing.mypy_plugin"]
[[tool.mypy.overrides]]
module = [
"sklearn",
"sklearn.*",
"skimage",
"skimage.*",
]
ignore_missing_imports = true