From cc15a2b7622e749b6a3c7d7ab25d5e4ca190fc74 Mon Sep 17 00:00:00 2001 From: "per.andreas.brodtkorb" Date: Tue, 26 Oct 2010 07:43:45 +0000 Subject: [PATCH] Small bugfix --- pywafo/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pywafo/setup.py b/pywafo/setup.py index 49608ba..2215141 100644 --- a/pywafo/setup.py +++ b/pywafo/setup.py @@ -24,11 +24,11 @@ import warnings MAJOR = 0 MINOR = 1 MICRO = 2 -ISRELEASED = True +ISRELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) -#sys.argv.append("develop") +sys.argv.append("develop") #sys.argv.append("install") DISTUTILS_DEBUG = True pkg_name = 'wafo' @@ -126,7 +126,7 @@ if __name__=='__main__': version = VERSION, author='WAFO-group', author_email='wafo@maths.lth.se', - decription = 'Statistical analysis and simulation of random waves and random loads', + description = 'Statistical analysis and simulation of random waves and random loads', long_description = info.__doc__, install_requires = ['numpy>=1.4','numdifftools>=0.2'], license = "GPL",