File: setup.cfg

package info (click to toggle)
zope.interface 8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,512 kB
  • sloc: python: 14,794; ansic: 1,878; makefile: 140
file content (37 lines) | stat: -rw-r--r-- 895 bytes parent folder | download
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
29
30
31
32
33
34
35
36
37
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/c-code

[zest.releaser]
create-wheel = no

[flake8]
doctests = 1
ignore =
    # module level import not at top of file:  we are avoiding cycles
    E402,
    # import not used:  we are publishing APIs, at least from __init__.py
    F401,
    # line break after binary operator
    W504

[check-manifest]
ignore =
    .editorconfig
    .meta.toml
    docs/_build/html/_sources/*
    docs/_build/doctest/*
    docs/_build/doctest/output.txt
    docs/_build/html/_sources/*
    docs/_build/html/_sources/api/*
    docs/_build/html/_static/scripts/*

[isort]
force_single_line = True
combine_as_imports = True
sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER
known_third_party = docutils, pkg_resources, pytz
known_zope =
known_first_party =
default_section = ZOPE
line_length = 79
lines_after_imports = 2