File: setup.cfg

package info (click to toggle)
python-sphinxcontrib.plantuml 0.31-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: python: 949; makefile: 141
file content (26 lines) | stat: -rw-r--r-- 440 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
[egg_info]
;tag_build = dev
;tag_date = true

[aliases]
release = egg_info -RDb ''

[flake8]
exclude =
    tests/fixture
# E203: whitespace before ':' (which disagrees with black)
# E741: ambiguous variable name 'l'
# W503: line break before binary operator
ignore = E203, E741, W503
# The default of black
max-line-length = 88

[options]
install_requires =
    Sphinx>=1.6

[options.extras_require]
test =
    pytest
    Pillow
    flake8