-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (55 loc) · 1.85 KB
/
setup.py
File metadata and controls
62 lines (55 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import pathlib
from setuptools import setup
long_description = (pathlib.Path(__file__).parent.resolve() / "README.rst").read_text(
encoding="utf-8"
)
packages = [
"python_strip_whitespace",
"python_strip_whitespace.html",
"python_strip_whitespace.functions",
"python_strip_whitespace.functions.compressors",
"python_strip_whitespace.functions.decompressors",
"python_strip_whitespace.functions.regex_patterns",
]
package_data = {"": ["python-strip-whitespace/*"]}
extras_require = {
"brotli": [
"Brotli; implementation_name == 'cpython'",
"brotlipy; implementation_name == 'PyPy'",
],
"zstd": ["zstd"],
}
install_requires = [
"minify-html",
]
setup_kwargs = setup(
name="python-strip-whitespace",
version="0.0.6",
description="A powerful HTML whitespace remover for python",
long_description=long_description,
author="baseplate-admin",
author_email="zarifahanf@outlook.com",
# 'maintainer': 'baseplate-admin',
# 'maintainer_email': None,
keywords="python3 alpinejs html5 js css",
url="https://github.com/baseplate-admin/python_strip_whitespace",
packages=packages,
package_data=package_data,
install_requires=install_requires,
extras_require=extras_require,
# zip_safe=False,
python_requires=">=3.7",
license="GPLv3",
platforms="any",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only ",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)