comparison setup.py @ 0:b65da5423cc9

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