comparison setup.py @ 4:6ec69ecbc072

update metadata
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 08:16:20 -0800
parents 79a43cbdf584
children
comparison
equal deleted inserted replaced
3:672addc0c4be 4:6ec69ecbc072
8 description="Command Line Web APP", 8 description="Command Line Web APP",
9 long_description="""gives the output from a command line application TTW 9 long_description="""gives the output from a command line application TTW
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 author='Jeff Hammel', 12 author='Jeff Hammel',
13 author_email='jhammel@openplans.org', 13 author_email='k0scist@gmail.com',
14 url='', 14 url='',
15 license="", 15 license="",
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), 16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
17 include_package_data=True, 17 include_package_data=True,
18 zip_safe=False, 18 zip_safe=False,
19 install_requires=[ 19 install_requires=[
20 # -*- Extra requirements: -*- 20 # -*- Extra requirements: -*-
21 'WebOb', 21 'WebOb',
22 'Paste', 22 'Paste',
23 'PasteScript', 23 'PasteScript',
24 ], 24 ],
25 entry_points=""" 25 entry_points="""
26 # -*- Entry points: -*- 26 # -*- Entry points: -*-
27 [paste.app_factory] 27 [paste.app_factory]
28 main = clwapp.factory:factory 28 main = clwapp.factory:factory
29 """, 29 """,
30 ) 30 )
31