summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2023-01-18 08:35:25 +0100
committerGitHub <noreply@github.com>2023-01-18 08:35:25 +0100
commit1944eef0b8bdd4b686ff441e0210537381714a4b (patch)
treef9b6a228d3913e666d15ad1af53179d40d0e9088 /setup.cfg
parent1239c75e4e190df992bf34a88b4ead2c952afe86 (diff)
downloadzope-browser-1944eef0b8bdd4b686ff441e0210537381714a4b.tar.gz
Config with pure python template (#18)
* Drop support for Python 2.7, 3.5, 3.6. * Add support for Python 3.11.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg13
1 files changed, 12 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 264b78c..ebb8516 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,7 +1,7 @@
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[bdist_wheel]
-universal = 1
+universal = 0
[flake8]
doctests = 1
@@ -11,3 +11,14 @@ 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