-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 992 Bytes
/
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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[dependency-groups]
test = ["pytest", "coverage"]
[tool.bandit]
skips = ["B101"]
[tool.black]
line-length = 120
[tool.flake8]
extend-ignore = ["E203", "E501", "E704", "W503"]
max-line-length = 120
[tool.isort]
profile = "black"
src_paths = ["examples", "src", "tests"]
[[tool.mypy.overrides]]
module = "senzing_abstract.szengineflags.*"
ignore_missing_imports = "true"
warn_unused_ignores = "false"
[[tool.mypy.overrides]]
module = "pytest_schema.*"
ignore_missing_imports = "true"
[tool.pylint]
ignored-argument-names = "args|kwargs"
disable = [
"broad-except",
"consider-using-f-string",
"line-too-long",
"missing-function-docstring",
"missing-module-docstring",
"protected-access",
"too-many-branches",
"too-many-locals",
]
good-names = [
"template-python"
]
ignore = [
"__init__.py",
"docs/source/conf.py"
]
notes = [
"FIXME"
]