comparison setup.py @ 0:72cb6dc31e3f

initial commit of webob_view from https://svn.openplans.org/svn/standalone/templates/webob_view/trunk/
author k0s <k0scist@gmail.com>
date Tue, 27 Oct 2009 15:04:33 -0400
parents
children 4dcb932065e4
comparison
equal deleted inserted replaced
-1:000000000000 0:72cb6dc31e3f
1 from setuptools import setup, find_packages
2 import sys, os
3
4 version = ''
5
6 setup(name='webob_view',
7 version=version,
8 description="paste template for a view using webob",
9 long_description="""\
10 """,
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12 keywords='',
13 author='Jeff Hammel',
14 author_email='jhammel@openplans.org',
15 url='http://www.openplans.org/people/k0s',
16 license='GPL',
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
18 include_package_data=True,
19 zip_safe=False,
20 install_requires=[ 'PasteScript',
21 ],
22 entry_points="""
23 # -*- Entry points: -*-
24 [paste.paster_create_template]
25 webob_view = webob_view:WebobViewTemplate
26 """,
27 )
28