-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
68 lines (52 loc) · 1.2 KB
/
setup.cfg
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
[metadata]
name = woeplanet_www_spelunker
version = file: VERSION
description = "The WoePlanet Spelunker"
long_description = file: README.md
author = "Gary Gale"
author_email = [email protected]
url = https://github.com/woeplanet/woeplanet-www-spelunker
[options]
zip_safe = False
python_requires = >= 3.8
packages = find:
# install_requires =
# requests >= 2.25.1
[options.packages.find]
exclude =
tests
tests.*
[options.package_data]
* = VERSION
[flake8]
max_line_length = 150
ignore = AZ100,B008,B028,E124,E501
show_source = True
[pylint.master]
extension-pkg-whitelist=pydantic
init-hook="import sys; sys.path.append('.')"
[pylint.format]
max-line-length=150
[pylint.design]
max-attributes=15
max-locals=50
max-branches=50
max-statements=100
[pylint.elif]
max-nested-blocks=10
[pylint.variables]
good-names=q,db
[pylint.similarities]
# Minimum lines number of a similarity.
min-similarity-lines=100
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
# Ignore imports when computing similarities.
ignore-imports=no
[pylint.typecheck]
generated-members=app.logger
[tool:pytest]
log_cli = True
log_cli_level = warning