forked from qucontrol/krotov
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
41 lines (36 loc) · 824 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
[flake8]
exclude = docs
max-line-length = 79
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
# don't care about "ambiguous variable names"
E741,
# when I use lambdas, I know what I'm doing
E731,
[tool:pytest]
collect_ignore = ['setup.py']
[rstcheck]
ignore_directives=doctest
ignore_messages=(Hyperlink target "[^"]+" is not referenced\.$)
ignore_roles=cite
[isort]
known_first_party = krotov
force_single_line = False
lines_after_imports = 2
line_length = 79
use_parentheses = True
multi_line_output = 3
include_trailing_comma = True
skip = src/krotov/__init__.py
[tox:tox]
minversion = 3.7
envlist = bootstrap
[testenv:bootstrap]
description = Configure tox
whitelist_externals =
python
skip_install = True
deps = tox
commands =
python scripts/bootstrap.py