#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2007-2008 Christopher Lenz # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. from setuptools import setup, find_packages setup( name = 'Diva', version = '0.1', author = 'Christopher Lenz', author_email = 'cmlenz@gmx.de', license = 'BSD', url = 'http://code.cmlenz.net/diva/', packages = find_packages(exclude=['*.tests']), include_package_data = True, zip_safe = False, test_suite = 'diva.tests.suite', install_requires = [ 'Babel>=0.9.2', 'Genshi>=0.5', 'WebOb>=0.9.2' ], setup_requires = ['Babel'], entry_points = """ [paste.app_factory] main = diva.core:Application.create [pygments.lexers] routingcfg = diva.ext.pygmentsplugin:RoutingConfLexer """, message_extractors = { 'diva': [ ('**.py', 'python', None), ('**/templates/**.html', 'genshi', None), ('**/templates/**.txt', 'genshi', { 'template_class': 'genshi.template:TextTemplate' }), ], } )