-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
92 lines (81 loc) · 1.84 KB
/
setup.cfg
File metadata and controls
92 lines (81 loc) · 1.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[metadata]
name = wibench
version = 0.3.0
description = An Extensible Open Source Framework for Evaluating Imperceptibility and Robustness of Digital Watermarks for Generated Images
author = Ivannikov Institute for System Programming of the RAS
author_email = info-isp@ispras.ru
url = https://github.com/ispras/wibe
[flake8]
inline-quotes = double
ignore = E203, W503
[mypy]
# mypy configurations: http://bit.ly/2zEl9WI
allow_redefinition = False
check_untyped_defs = True
disallow_untyped_calls = True
disallow_untyped_defs = True
ignore_errors = False
ignore_missing_imports = True
implicit_reexport = False
local_partial_types = True
strict_optional = True
strict_equality = True
no_implicit_optional = True
warn_no_return = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
[options]
packages = find:
include_package_data = True
python_requires = >=3.8
package_dir =
=src
install_requires =
typer
numpy>= 1.24.4
scikit-image>= 0.21.0
scipy
tqdm
torch
torchvision
pandas < 3
jinja2
PyYaml
pydantic
opencv-python
[options.packages.find]
where=src
[options.extras_require]
dev =
# These requirements are for development and testing only, not for production.
pytest
pytest-cov
pytest-forked
flake8
flake8-commas
flake8-continuation
pep8-naming
flake8-expression-complexity
flake8-quotes
black
mypy
[options.entry_points]
console_scripts =
wibench = wibench.cli:app
[tool:pytest]
testpaths = tests
addopts = --cov=src/wibench --cov-report=term --cov-report=html --cov-append
[coverage:run]
source = src/wibench
parallel = True
branch = True
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
if __name__ == .__main__.:
pass
show_missing = True