35 lines
970 B
Python
35 lines
970 B
Python
import os
|
|
from distutils.core 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.5",
|
|
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.filters',
|
|
'compressor.filters.jsmin',
|
|
'compressor.templatetags',
|
|
],
|
|
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',
|
|
]
|
|
)
|