forked from matthiask/html-sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
48 lines (44 loc) · 1.09 KB
/
setup.cfg
File metadata and controls
48 lines (44 loc) · 1.09 KB
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
38
39
40
41
42
43
44
45
46
47
48
[metadata]
name = html_sanitizer
version = attr: html_sanitizer.__version__
description = HTML sanitizer
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/matthiask/html-sanitizer/
author = Matthias Kestenholz
author_email = mk@feinheit.ch
license = BSD-3-Clause
license_file = LICENSE
platforms = OS Independent
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development
[options]
packages = find:
install_requires =
beautifulsoup4
lxml>=4.6.3
python_requires = >=3.6
include_package_data = True
[flake8]
exclude = venv,build,docs,.eggs,.tox
max-line-length = 88
[isort]
profile = black
combine_as_imports = True
lines_after_imports = 2
[coverage:run]
branch = True
include =
*html_sanitizer*
omit =
*migrations*
*tests*
*.tox*