forked from django-compressor/django-compressor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.27 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
44
45
46
47
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
README = read('README.rst')
setup(
name = "django_compressor",
version = "0.6a8",
url = 'http://github.com/mintchaos/django_compressor',
license = 'BSD',
description = "Compresses linked and inline javascript or CSS into a single cached file.",
long_description = README,
author = 'Christian Metts',
author_email = 'xian@mintchaos.com',
packages = [
'compressor',
'compressor.conf',
'compressor.filters',
'compressor.filters.jsmin',
'compressor.filters.cssmin',
'compressor.templatetags',
'compressor.management',
'compressor.management.commands',
],
package_data = {
'compressor': [
'templates/compressor/*.html',
],
},
install_requires = [
'BeautifulSoup',
],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe = False,
)