cmlenz@1: #!/usr/bin/env python cmlenz@1: # -*- coding: utf-8 -*- cmlenz@1: # cmlenz@1: # Copyright (C) 2006 Christopher Lenz 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@1: # are also available at http://trac.edgewall.com/license.html. 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@1: # history and logs, available at http://projects.edgewall.com/trac/. 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@1: author='Christopher Lenz', author_email='cmlenz@gmx.net', cmlenz@1: license='BSD', url='http://markup.cmlenz.net/', 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: )