summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg17
1 files changed, 12 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
index f32b31d..ebb8516 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,17 +1,24 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[bdist_wheel]
-universal = 1
+universal = 0
[flake8]
doctests = 1
-# E741 ambiguous variable name
-# F821 undefined name
-per-file-ignores =
- src/zope/tal/talgettext.py: E741 F821
[check-manifest]
ignore =
.editorconfig
.meta.toml
docs/_build/html/_sources/*
+
+[isort]
+force_single_line = True
+combine_as_imports = True
+sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER
+known_third_party = six, docutils, pkg_resources
+known_zope =
+known_first_party =
+default_section = ZOPE
+line_length = 79
+lines_after_imports = 2