changeset 90:fa2c4db30e81

update setup.py
author Jeff Hammel <k0scist@gmail.com>
date Wed, 12 Apr 2017 11:46:57 -0700
parents 7fdd934855bf
children 823c5c26fe66
files setup.py
diffstat 1 files changed, 7 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Fri Mar 21 23:04:01 2014 -0700
+++ b/setup.py	Wed Apr 12 11:46:57 2017 -0700
@@ -1,13 +1,13 @@
 import os
-from setuptools import setup, find_packages
+from setuptools import setup
 
 try:
     here = os.path.dirname(os.path.abspath(__file__))
-    description = file(os.path.join(here, 'README.txt')).read()
-except IOError: 
+    description = open(os.path.join(here, 'README.txt')).read()
+except IOError:
     description = ''
 
-version = "0.1.3"
+version = "0.1.4"
 dependencies = []
 
 setup(name='pyloader',
@@ -16,10 +16,10 @@
       long_description=description,
       classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
       author='Jeff Hammel',
-      author_email='jhammel@mozilla.com',
-      url='http://k0s.org/',
+      author_email='k0scist@gmail.com',
+      url='http://k0s.org/hg/pyloader',
       license='MPL',
-      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+      packages=['pyloader'],
       include_package_data=True,
       zip_safe=False,
       install_requires=dependencies,
@@ -29,5 +29,4 @@
       pyloader = pyloader.invoke:main
       """,
       )
-