cmlenz@1: #!/usr/bin/env python cmlenz@1: # -*- coding: utf-8 -*- cmlenz@1: # cmlenz@66: # Copyright (C) 2006 Edgewall Software cmlenz@1: # All rights reserved. cmlenz@1: # cmlenz@1: # This software is licensed as described in the file COPYING, which cmlenz@1: # you should have received as part of this distribution. The terms cmlenz@66: # are also available at http://markup.edgewall.org/wiki/License. cmlenz@1: # cmlenz@1: # This software consists of voluntary contributions made by many cmlenz@1: # individuals. For the exact contribution history, see the revision cmlenz@66: # history and logs, available at http://markup.edgewall.org/log/. cmlenz@1: cmlenz@84: try: cmlenz@84: from setuptools import setup, find_packages cmlenz@84: except ImportError: cmlenz@84: from distutils.core import setup cmlenz@1: cmlenz@1: setup( cmlenz@129: name='Markup', version='0.2', cmlenz@1: description='Toolkit for stream-based generation of markup for the web', cmlenz@66: author='Edgewall Software', author_email='info@edgewall.org', cmlenz@66: license='BSD', url='http://markup.edgewall.org/', cmlenz@126: download_url='http://markup.edgewall.org/wiki/MarkupDownload', cmlenz@124: classifiers = [ cmlenz@124: 'Development Status :: 4 - Beta', cmlenz@124: 'Environment :: Web Environment', cmlenz@124: 'Intended Audience :: Developers', cmlenz@124: 'License :: OSI Approved :: BSD License', cmlenz@124: 'Operating System :: OS Independent', cmlenz@124: 'Programming Language :: Python', cmlenz@124: 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', cmlenz@124: 'Topic :: Software Development :: Libraries :: Python Modules', cmlenz@124: 'Topic :: Text Processing :: Markup :: HTML', cmlenz@124: 'Topic :: Text Processing :: Markup :: XML' cmlenz@124: ], cmlenz@124: cmlenz@84: packages=['markup'], cmlenz@84: cmlenz@1: test_suite = 'markup.tests.suite', cmlenz@4: zip_safe = True, cmlenz@4: entry_points = """ cmlenz@4: [python.templating.engines] cmlenz@4: markup = markup.plugin:TemplateEnginePlugin cmlenz@4: """, cmlenz@1: )