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