-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
29 lines (28 loc) · 1.11 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
from setuptools import find_packages, setup
setup(
name="django-static-compress",
version="2.0.0",
url="https://github.com/whs/django-static-compress",
author="Manatsawin Hanmongkolchai",
author_email="[email protected]",
description="Precompress Django static files with Brotli and Zopfli",
license="MIT",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=["Django", "Brotli~=1.0.9", "zopfli~=0.1.8"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Pre-processors",
],
)