view setup.py @ 2:b8e5471794b2

move to a dispatcher architecture
author k0s <k0scist@gmail.com>
date Thu, 05 Nov 2009 23:15:37 -0500
parents b65da5423cc9
children 198d1cb34c14
line wrap: on
line source

from setuptools import setup, find_packages

version = '0.2'

setup(name='genshi_view',
      version=version,
      description="paste template for a view using webob + genshi",
      long_description="""\
""",
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      author='Jeff Hammel',
      author_email='jhammel@openplans.org',
      url='http://oss.openplans.org',
      license='GPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[ 'PasteScript',
      ],
      entry_points="""
      # -*- Entry points: -*-
      [paste.paster_create_template]
      genshi_view = genshi_view:GenshiViewTemplate
      """,
      )