This repository has been archived by the owner on Dec 17, 2021. It is now read-only.
forked from Charles-Kaminski/django-template-minimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.58 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
38
39
40
41
42
43
#!/usr/bin/env python
from distutils.core import setup
import codecs
long_description = codecs.open('README.rst', 'r', 'utf-8').read()
setup(
name='django-template-minimizer',
version='0.1.7',
description=('Minimize your Django templates so that '
'your HTML is served up already minimized.'),
long_description=long_description,
author='Charles Kaminski',
author_email='[email protected]',
url='https://github.com/Charles-Kaminski/django-template-minimizer',
license='MIT',
py_modules=['tmin.__init__',
'tmin.management.__init__',
'tmin.management.commands.__init__',
'tmin.management.commands.minimizetemplates',
'tmin.management.commands._ManageMinimizers',
'tmin.management.commands._TemplateTextMinimizer',],
classifiers=[
'Development Status :: 4 - Beta',
'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.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
install_requires=[
'django',
]
)