changeset 4:1b2f9d3948d7

py3
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 10:05:32 -0800
parents 11173b4a7ca8
children bf5386d3c7e4
files setup.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Mon Dec 19 12:28:19 2016 -0800
+++ b/setup.py	Tue Nov 03 10:05:32 2020 -0800
@@ -1,7 +1,7 @@
 from setuptools import setup
 
 try:
-    description = file('README.txt').read()
+    description = open('README.txt').read()
 except IOError:
     description = ''
 
@@ -27,7 +27,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/toolbox/',
       license="MPL",
       packages=['toolbox'],
@@ -43,4 +43,4 @@
       [paste.app_factory]
       toolbox = toolbox.factory:paste_factory
       """,
-      )
+)