view setup.py @ 22:f088f0b54b55 default tip

py3
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 08:42:44 -0800
parents cf19d2e129de
children
line wrap: on
line source

from setuptools import setup, find_packages

try:
  description = open('README.txt').read()
except IOError:
  description = ''

version = '0.3.2'

setup(name='genshi_view',
      version=version,
      description="paste template for a view using webob + genshi",
      long_description=description,
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org/hg/genshi_view',
      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
      """,
      )