Mercurial > hg > wordstream
diff setup.py @ 8:f53171b2acf4
python3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 10:13:50 -0800 |
parents | c576f5877459 |
children | baa70e3b3896 |
line wrap: on
line diff
--- 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 """, - ) - +)