Mercurial > hg > relocator
diff setup.py @ 2:1892dd7d8748 default tip
py3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 09:59:20 -0800 |
parents | a12647395076 |
children |
line wrap: on
line diff
--- 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', + ] +)