Integrate with Makefile, delete pep8 target from Makefile, use flake8, update travis script, delete coverage reference, we want 100% anywhere
27 lines
607 B
INI
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=bztar
|
|
|
|
[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
|