# HG changeset patch # User Jeff Hammel # Date 1604426432 28800 # Node ID ccd73b01ba79212fafb28af0d19705065f285f2b # Parent 58643b3191f026c8c38a0f276e7422cfc29bec22 py3 diff -r 58643b3191f0 -r ccd73b01ba79 setup.py --- a/setup.py Thu May 14 18:05:29 2015 -0700 +++ b/setup.py Tue Nov 03 10:00:32 2020 -0800 @@ -2,8 +2,8 @@ import sys, os try: - description = file('README.txt').read() -except IOError: + description = open('README.txt').read() +except IOError: description = '' version = "0.1.2" @@ -14,21 +14,14 @@ 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/map.svg', license="MPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ - # -*- Extra requirements: -*- - 'WebOb', + 'WebOb', 'PyGraphviz', ], - entry_points=""" - # -*- Entry points: -*- - [paste.app_factory] - main = svgsitemap.factory:factory - """, - ) - +)