File: setup.cfg

package info (click to toggle)
python-bleach 3.1.2-0%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,320 kB
  • sloc: python: 13,477; makefile: 130; sh: 47
file content (17 lines) | stat: -rw-r--r-- 270 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[aliases]
test=pytest

[flake8]
exclude =
    .git/,
    .tox/,
    bleach/_vendor/*
ignore =
    # E731: do not assign a lambda expression, use a def
    E731,
    # W503: line break occurred before a binary operator
    W503
max-line-length = 100

[wheel]
universal=1