nsupdate.info/setup.cfg
Thomas Waldmann 3036d9a27d pep8 checker: do not recurse into .eggs/
we do not want to test setuptools_scm for pep8 issues.
2019-04-03 18:10:40 +02:00

38 lines
996 B
INI

[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
[bdist_rpm]
release=1
doc_files=
README.rst
LICENSE
PKG-INFO
docs/
requires=python
build_requires=python
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[upload_sphinx]
upload-dir = docs/_build/html
[tool:pytest]
DJANGO_SETTINGS_MODULE = nsupdate.settings.dev
pep8maxlinelength = 120
norecursedirs = .git .eggs
pep8ignore =
*.py E124 # closing bracket does not match visual indentation (behaves strange!?)
*.py E125 # continuation line does not distinguish itself from next logical line (difficult to avoid!)
*.py E129 # visually indented line with same indent as next logical line
*.py E402 # we do not care about module level imports being at top of file
*.py E731 # we do assign lambda expressions if we like
*.py W503 # we don't think this is an issue
docs/conf.py ALL # sphinx stuff, automatically generated, don't check this
migrations/*.py ALL # autogenerated by Django