-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
37 lines (35 loc) · 1.2 KB
/
setup.py
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
from setuptools import setup
setup(
name="Flask-Static-Digest",
version="0.4.1",
author="Nick Janetakis",
author_email="[email protected]",
url="https://github.com/nickjj/flask-static-digest",
description=(
"Flask extension for md5 tagging and compressing "
"(gzip / brotli) static files."
),
license="MIT",
package_data={"Flask-Static-Digest": ["VERSION"]},
packages=["flask_static_digest"],
platforms="any",
python_requires=">=3.6",
zip_safe=False,
install_requires=["Flask>=1.0"],
extras_require={"brotli": ["Brotli>=1.0.9"]},
entry_points={
"flask.commands": ["digest=flask_static_digest.cli:digest"],
},
classifiers=[
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Compression",
],
)