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@1: from setuptools import setup, find_packages cmlenz@1: cmlenz@1: setup( cmlenz@1: name='Markup', version='0.1', 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@1: packages=find_packages(exclude=['*.tests*']), 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: )