-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (38 loc) · 932 Bytes
/
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
[bumpversion]
current_version = 2.6.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
[bumpversion:file:owtf/__init__.py]
[bdist_wheel]
universal = 1
[flake8]
ignore = E111,E114,E121,E125,E128
exclude = .git,__pycache__,*.pyc,*.pyo,.tox,.eggs,*.egg-info,.ropeproject,scratch
max-line-length = 120
doctests = True
[pep8]
ignore = E111,E114,E121,E125,E128
max_line_length = 120
[pycodestyle]
max-line-length = 120
[yapf]
based_on_style = google
column_limit = 120
[tool:pytest]
norecursedirs = .* *.egg *.egg-info owtf/
doctest_optionflags = ALLOW_UNICODE ELLIPSIS
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all_files = 1
[upload_sphinx]
upload-dir = doc/build/html
[isort]
line_length = 120
skip_glob = ["*node_modules/*"]
known_first_party = owtf
indent = ' '
multi_line_output = 2
balanced_wrapping = True
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER