1
from distutils.core import setup
3
# patch distutils if it can't cope with the "classifiers" or "download_url"
4
# keywords (prior to python 2.3.0).
5
from distutils.dist import DistributionMetadata
6
if not hasattr(DistributionMetadata, 'classifiers'):
7
DistributionMetadata.classifiers = None
8
if not hasattr(DistributionMetadata, 'download_url'):
9
DistributionMetadata.download_url = None
14
description = 'HTML,XHTML,CSS,JavaScript optimizer',
15
long_description = """\
19
Can slim (X)HTML, CSS and Javascript files to become smaller
21
Required: Python 2.1 or later
22
Recommended: Python 2.3 or later
24
author='Peter Bengtsson',
25
author_email = 'peter@fry-it.com',
26
url = 'http://www.fry-it.com',
27
download_url = 'http://www.fry-it.com/Open-Source/slimmer',
29
platforms = ['POSIX', 'Windows'],
30
keywords = ['slimmer', 'optimizer', 'optimiser', 'whitespace'],
32
"Development Status :: 5 - Production/Stable",
33
"Environment :: Other Environment",
34
"Environment :: Web Environment",
35
"Intended Audience :: Developers",
36
"License :: OSI Approved :: Python Software Foundation License",
37
"Operating System :: OS Independent",
38
"Programming Language :: Python",
39
"Topic :: Communications",
40
"Topic :: Internet :: WWW/HTTP",
41
"Topic :: Other/Nonlisted Topic",
42
"Topic :: Software Development :: Libraries :: Python Modules",
44
py_modules = ['slimmer',]