kiwi-el8/setup.cfg
Marcus Schäfer 232716fc1b
Move to tar.gz as sdist target
PyPI is planning to support only .tar.gz in the near future.
See https://www.python.org/dev/peps/pep-0527. This Fixes #132
2016-08-25 16:05:57 +02:00

27 lines
607 B
INI

[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal = 1
[sdist]
# Used by setup.py sdist
formats=gztar
[nosetests]
where = test/unit
[flake8]
# For error codes, see
# http://pep8.readthedocs.org/en/latest/intro.html#error-codes
ignore = E501
# This file is generated automatically:
exclude=xml_parse.py
max-line-length = 160
# exclude = test/*
max-complexity = 16
[doc8]
max-line-length = 90
verbose = 1