Imported Upstream version 2.1.3
[platform/upstream/python3-MarkupSafe.git] / setup.cfg
1 [metadata]
2 name = MarkupSafe
3 version = attr: markupsafe.__version__
4 url = https://palletsprojects.com/p/markupsafe/
5 project_urls = 
6         Donate = https://palletsprojects.com/donate
7         Documentation = https://markupsafe.palletsprojects.com/
8         Changes = https://markupsafe.palletsprojects.com/changes/
9         Source Code = https://github.com/pallets/markupsafe/
10         Issue Tracker = https://github.com/pallets/markupsafe/issues/
11         Chat = https://discord.gg/pallets
12 license = BSD-3-Clause
13 license_files = LICENSE.rst
14 maintainer = Pallets
15 maintainer_email = contact@palletsprojects.com
16 description = Safely add untrusted strings to HTML/XML markup.
17 long_description = file: README.rst
18 long_description_content_type = text/x-rst
19 classifiers = 
20         Development Status :: 5 - Production/Stable
21         Environment :: Web Environment
22         Intended Audience :: Developers
23         License :: OSI Approved :: BSD License
24         Operating System :: OS Independent
25         Programming Language :: Python
26         Topic :: Internet :: WWW/HTTP :: Dynamic Content
27         Topic :: Text Processing :: Markup :: HTML
28
29 [options]
30 packages = find:
31 package_dir = = src
32 include_package_data = True
33 python_requires = >= 3.7
34
35 [options.packages.find]
36 where = src
37
38 [tool:pytest]
39 testpaths = tests
40 filterwarnings = 
41         error
42         ignore:ast:DeprecationWarning
43
44 [coverage:run]
45 branch = True
46 source = 
47         markupsafe
48         tests
49
50 [coverage:paths]
51 source = 
52         src
53         */site-packages
54
55 [flake8]
56 select = B, E, F, W, B9, ISC
57 ignore = 
58         E203
59         E501
60         E722
61         W503
62         B905
63 max-line-length = 80
64
65 [mypy]
66 files = src/markupsafe
67 python_version = 3.7
68 show_error_codes = True
69 disallow_subclassing_any = True
70 disallow_untyped_calls = True
71 disallow_untyped_defs = True
72 disallow_incomplete_defs = True
73 no_implicit_optional = True
74 local_partial_types = True
75 no_implicit_reexport = True
76 strict_equality = True
77 warn_redundant_casts = True
78 warn_unused_configs = True
79 warn_unused_ignores = True
80 warn_return_any = True
81 warn_unreachable = True
82
83 [egg_info]
84 tag_build = 
85 tag_date = 0
86