summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2023-02-07 11:15:48 +0100
committerGitHub <noreply@github.com>2023-02-07 10:15:48 +0000
commit8f8ed8f7b603792b48401a64b51e900e86b88a82 (patch)
tree7fa4ac09d90e57c261ea28bc8281c42d7032d8b3 /setup.cfg
parent14ba59c98e12517b9f8abcdb24bc882bb435ed7c (diff)
downloadzope-pagetemplate-8f8ed8f7b603792b48401a64b51e900e86b88a82.tar.gz
Multiple changes (#31)
* Add support for Python 3.11. * Lint the code. * Improve error handling in test. * Bumped version for breaking release. * Drop support for Python 2.7, 3.5, 3.6. Co-authored-by: Gil Forcada Codinachs <gil.gnome@gmail.com>
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 8b04203..544de16 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
@@ -12,3 +12,14 @@ ignore =
.meta.toml
docs/_build/html/_sources/*
docs/_build/doctest/*
+
+[isort]
+force_single_line = True
+combine_as_imports = True
+sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER
+known_third_party = six, docutils, pkg_resources, pytz
+known_zope =
+known_first_party =
+default_section = ZOPE
+line_length = 79
+lines_after_imports = 2