forked from nsupdate-info/nsupdate.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
38 lines (33 loc) · 1002 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[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!)
*.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