Mercurial > hg > webob_view
view setup.py @ 4:ee9ed5875df0
add a name to the input
author | Robert Marianski <rob@marianski.com> |
---|---|
date | Mon, 02 Nov 2009 17:50:39 -0500 |
parents | 4dcb932065e4 |
children | f70d8f3aee51 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.5' setup(name='webob_view', version=version, description="paste template for a view using webob", 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://k0s.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] webob_view = webob_view:WebobViewTemplate """, )