kiwi-el8/setup.cfg
David Cassany 1570e2c309
Remove universal flag
kiwi is no longer an universal python module, since it does not support
python 2 anymore. This will prevent to install future versions on
python2 environments using pip.

Related with #1226
2019-10-08 13:43:54 +02:00

25 lines
561 B
INI

[sdist]
# Used by setup.py sdist
formats=gztar
[tool:pytest]
norecursedirs = .git build .tox/ .tmp/
addopts = --ignore=.tmp/ --ignore=.git/ --ignore=.tox/ -p no:warnings
testpaths = test/unit
[flake8]
# For error codes, see
# http://pep8.readthedocs.org/en/latest/intro.html#error-codes
#
# This file is generated automatically:
exclude=xml_parse.py
# we allow long lines (E501)
# we ignore warnings about quoting of escape sequences (W605)
ignore = E501, W605
# we allow a custom complexity level
max-complexity = 12
[doc8]
max-line-length = 90
verbose = 1