# HG changeset patch # User Jeff Hammel # Date 1604420333 28800 # Node ID 825833a5c4a7a7ceb4f0a60eb5d5b6bd7aeb76ea # Parent a3f3c403b1e80fc14f5a96d09b4d00a4f166c265 update metadata diff -r a3f3c403b1e8 -r 825833a5c4a7 setup.py --- a/setup.py Tue Nov 12 22:29:03 2013 -0800 +++ b/setup.py Tue Nov 03 08:18:53 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.2.2" @@ -21,11 +21,10 @@ zip_safe=False, install_requires=[ # -*- Extra requirements: -*- - 'WebOb', + 'WebOb', 'Paste', 'PasteScript', 'genshi', -# 'CouchDB' ], entry_points=""" # -*- Entry points: -*- @@ -34,4 +33,4 @@ captcha_comments = commentator.example:captcha_factory """, ) - +