Mercurial > hg > webob_view
view 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 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = '0.6.1' setup(name='webob_view', version=version, description="paste template for a view using webob", long_description="", classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org', license='GPL', packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ 'PasteScript', 'webob' ], entry_points=""" # -*- Entry points: -*- [paste.paster_create_template] webob_view = webob_view:WebobViewTemplate """, )