nsupdate.info/setup.cfg

39 lines
1002 B
INI
Raw Normal View History

[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
[pytest]
DJANGO_SETTINGS_MODULE = nsupdate.settings.dev
pep8maxlinelength = 120
norecursedirs = .git
minversion = 2.3
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!)
2014-08-27 17:27:45 +02:00
*.py E129 # visually indented line with same indent as next logical line
2015-02-08 19:45:01 +01:00
*.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