Mercurial > hg > webob_view
comparison setup.py @ 8:87bac4e6b908 default tip
update metadata
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 10:12:55 -0800 |
parents | ff0e2a6dd07b |
children |
comparison
equal
deleted
inserted
replaced
7:ff0e2a6dd07b | 8:87bac4e6b908 |
---|---|
4 version = '0.6.1' | 4 version = '0.6.1' |
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 """, | |
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='', | 11 keywords='', |
13 author='Jeff Hammel', | 12 author='Jeff Hammel', |
14 author_email='jhammel@openplans.org', | 13 author_email='k0scist@gmail.com', |
15 url='http://k0s.org', | 14 url='http://k0s.org', |
16 license='GPL', | 15 license='GPL', |
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
18 include_package_data=True, | 17 include_package_data=True, |
19 zip_safe=False, | 18 zip_safe=False, |
21 entry_points=""" | 20 entry_points=""" |
22 # -*- Entry points: -*- | 21 # -*- Entry points: -*- |
23 [paste.paster_create_template] | 22 [paste.paster_create_template] |
24 webob_view = webob_view:WebobViewTemplate | 23 webob_view = webob_view:WebobViewTemplate |
25 """, | 24 """, |
26 ) | 25 ) |
27 |