# HG changeset patch # User Jeff Hammel # Date 1604427230 28800 # Node ID f53171b2acf4534b26adc6e2a8fa37bce8de3999 # Parent c576f5877459aab633da7680595910f863370f5d python3 diff -r c576f5877459 -r f53171b2acf4 setup.py --- a/setup.py Sat Nov 19 18:19:13 2011 -0800 +++ b/setup.py Tue Nov 03 10:13:50 2020 -0800 @@ -3,7 +3,7 @@ try: filename = os.path.join(os.path.dirname(__file__), 'README.txt') - description = file(filename).read() + description = open(filename).read() except: description = "" @@ -22,8 +22,7 @@ include_package_data=True, zip_safe=False, install_requires=[ - # -*- Extra requirements: -*- - 'WebOb', + 'WebOb', 'Paste', 'PasteScript', 'genshi' @@ -37,5 +36,4 @@ wordstream = wordstream.main:main dissociate = wordstream.dissociate:main """, - ) - +)