blob: cea6e06bb89c63426513387d34378cee0753ce9a (
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
|
[metadata]
license_file = LICENSE.rst
[tool:pytest]
testpaths = tests
[coverage:run]
branch = True
source =
markupsafe
[coverage:paths]
source =
src/markupsafe
.tox/*/lib/python*/site-packages/markupsafe
.tox/*/site-packages/markupsafe
[flake8]
select = B, E, F, W, B9
ignore = E203, E501, W503
max-line-length = 80
exclude = src/markupsafe/_compat.py
[egg_info]
tag_build =
tag_date = 0
|