From bf9f70444fd465b9ff9566e75dd04b55ca43d830 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 12 Nov 2009 14:46:37 +0200 Subject: [PATCH] setup: Fix author field not to be tuple. --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 4f36e312..b7ebed7c 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,8 @@ http://stefanv.github.com/scikits.image DISTNAME = 'scikits.image' DESCRIPTION = 'Image processing routines for SciPy' LONG_DESCRIPTION = descr -MAINTAINER = 'Stefan van der Walt', -MAINTAINER_EMAIL = 'stefan@sun.ac.za', +MAINTAINER = 'Stefan van der Walt' +MAINTAINER_EMAIL = 'stefan@sun.ac.za' URL = 'http://stefanv.github.com/scikits.image' LICENSE = 'Modified BSD' DOWNLOAD_URL = 'http://github.com/stefanv/scikits.image' @@ -79,8 +79,8 @@ if __name__ == "__main__": include_package_data=True, zip_safe=False, # the package can run out of an .egg file - entry_points={ - 'console_scripts': [ - 'scivi = scikits.image.scripts.scivi:main'] - }, + #entry_points={ + # 'console_scripts': [ + # 'scivi = scikits.image.scripts.scivi:main'] + # }, )