summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorRick van Hattem <wolph@wol.ph>2015-01-13 10:08:16 +0100
committerRick van Hattem <wolph@wol.ph>2015-01-13 10:08:16 +0100
commitfedce174130d54a962df04dbb9d1dd54d0c7bf16 (patch)
tree524fd012683771071d38bf2b314557993690eff4 /setup.cfg
parentd7c4f2ed2847c1472c0e60f20e25db20e60dc7d7 (diff)
downloadsix-git-fedce174130d54a962df04dbb9d1dd54d0c7bf16.tar.gz
added flake8 for pep8 and pyflakes support
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg16
1 files changed, 16 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 5e40900..4a5b847 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,18 @@
[wheel]
universal = 1
+
+[flake8]
+max-line-length = 100
+ignore = F821
+
+[pytest]
+minversion=2.2.0
+pep8ignore =
+ documentation/*.py ALL
+ test_six.py ALL
+
+flakes-ignore =
+ documentation/*.py ALL
+ test_six.py ALL
+ six.py UndefinedName
+