summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: b86541d150ff5d955f2f0713ecf6c896eb790686 (plain)
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
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
[bdist_wheel]
universal = 1

[flake8]
doctests = 1
# F401 imported but unused
per-file-ignores =
    src/zope/location/__init__.py: F401

[check-manifest]
ignore =
    .editorconfig
    .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
known_zope =
known_first_party =
default_section = ZOPE
line_length = 79
lines_after_imports = 2