# HG changeset patch # User Jeff Hammel # Date 1604426360 28800 # Node ID 1892dd7d87480e824751a26dc9aec4d1c6474e8c # Parent a126473950765e91bee19296d49785124d92b867 py3 diff -r a12647395076 -r 1892dd7d8748 setup.py --- a/setup.py Sun May 01 13:33:05 2011 -0700 +++ b/setup.py Tue Nov 03 09:59:20 2020 -0800 @@ -1,8 +1,8 @@ from setuptools import setup, find_packages try: - description = file('README.txt').read() -except IOError: + description = open('README.txt').read() +except IOError: description = '' version = "0.1" @@ -13,7 +13,7 @@ long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', - author_email='jhammel@mozilla.com', + author_email='k0scist@gmail.com', url='http://k0s.org/hg/relocator', license="MPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), @@ -21,10 +21,6 @@ zip_safe=False, install_requires=[ # -*- Extra requirements: -*- - 'WebOb', - ], - entry_points=""" - # -*- Entry points: -*- - """, - ) - + 'WebOb', + ] +)