Mercurial > hg > commentator
changeset 9:825833a5c4a7 default tip
update metadata
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 08:18:53 -0800 |
parents | a3f3c403b1e8 |
children | |
files | setup.py |
diffstat | 1 files changed, 4 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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 """, ) - +