forked from albermax/innvestigate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
101 lines (93 loc) · 2.52 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[tool.poetry]
name = "innvestigate"
version = "1.0.10"
description = "A toolbox to innvestigate neural networks' predictions."
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 2 - Pre-Alpha", # TODO: update on release
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
authors = [
"Maxmilian Alber <[email protected]>",
"Sebastian Lapuschkin",
"Miriam Haegele",
"Kristof Schuett",
"Philipp Seegerer",
"Pieter-Jan Kindermans",
"Henry Webel",
"Leander Weber",
"Adrian Hill <[email protected]>",
"and others",
]
maintainers = ["Adrian Hill <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
homepage = "https://github.com/albermax/innvestigate"
repository = "https://github.com/albermax/innvestigate"
documentation = "https://innvestigate.readthedocs.io/en/latest/"
keywords = ["XAI", "LRP", "Deep Taylor",]
[tool.poetry.dependencies]
python = "~3.7"
Keras = "~2.3"
tensorflow = "~1.15"
Pillow = "^8.1.1"
future = "^0.18.2"
numpy = "^1.18.5"
matplotlib = "^3.4.0"
typing-extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
black = { version = "*", allow-prereleases = true }
flake8 = "^3.8.4"
flake8-black = "^0.2.1"
flake8-bugbear = "^21.3.1"
flake8-builtins = "^1.5.3"
flake8-docstrings = "^1.5.0"
flake8-isort = "^4.0.0"
pep8-naming = "^0.11.1"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
coverage = {extras = ["toml"], version = "^5.5"}
codecov = "^2.1.11"
rope = "^0.18.0"
pylint = "^2.7.3"
ipykernel = "^5.5.0"
isort = "^5.8.0"
mypy = "^0.812"
MonkeyType = "^20.5.0"
vulture = "^2.3"
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = "innvestigate"
known_local_folder = "tests"
[tool.pytest.ini_options]
addopts = "-v -m fast --strict-markers --cov"
# addopts = "-v -m precommit --strict-markers --cov"
filterwarnings = [
"ignore::DeprecationWarning:tensorflow",
"ignore::DeprecationWarning:tensorboard",
"ignore::DeprecationWarning:keras",
]
markers = [
"precommit",
"slow",
"fast",
"application",
"imagenet",
]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["innvestigate"]
[tool.coverage.report]
show_missing = false
# Build with Poetry
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"