changeset 26:ccd73b01ba79 default tip

py3
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 10:00:32 -0800
parents 58643b3191f0
children
files setup.py
diffstat 1 files changed, 5 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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
-      """,
-      )
-      
+)