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
|
from setuptools import setup, find_packages
import sys, os
version = '0.1.30'
README = os.path.join(os.path.dirname(__file__), 'README.txt')
long_description = open(README).read().strip() + "\n\n"
extra = {}
setup(name='slimmer',
version=version,
description="HTML,XHTML,CSS,JavaScript optimizer",
long_description=long_description,
keywords='slimmer optimizer optimiser whitespace',
author='Peter Bengtsson',
author_email='peter@fry-it.com',
url='http://www.fry-it.com',
download_url='http://pypi.python.org/pypi/slimmer/',
license='Python',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Other/Nonlisted Topic",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
test_suite='slimmer.tests',
zip_safe=True,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
**extra
)
|