-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (48 loc) · 1.75 KB
/
setup.py
File metadata and controls
53 lines (48 loc) · 1.75 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
import os
from setuptools import find_packages, setup
from django_minify_compress_staticfiles import get_version
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, "README.rst"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="django-minify-compress-staticfiles",
version=get_version(),
description="Django package for minifying and compressing static files",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
author="OpenWISP",
author_email="support@openwisp.io",
url="https://github.com/openwisp/django-minify-compress-staticfiles",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
install_requires=[
"rjsmin>=1.2.0,<2.0.0",
"rcssmin>=1.1.0,<2.0.0",
"brotli>=1.2.0,<2.0.0",
],
extras_require={
"test": [
"openwisp-utils[qa]~=1.2.2",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="django staticfiles minification compression optimization",
python_requires=">=3.10",
zip_safe=False,
)