From d15ad192ac5c20c802ddc28f8aba13bf376f6b68 Mon Sep 17 00:00:00 2001 From: Jose Gomez-Dans Date: Mon, 25 Jan 2016 12:49:46 +0000 Subject: [PATCH] Upped setup and version to 1.2.0. Things should look nice and mostly proffessional --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d1c560a..3be593c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.core import setup # Global variables for this extension: name = "prosail" # name of the generated python extension (.so) - description = "PROSPECT, SAIL and PROSIAL Python wrappers" + description = "PROSPECT, SAIL and PROSAIL Python wrappers" long_description = "The PROSPECT + SAILh radiative transfer models from Python." if os.path.exists ( "README.txt" ): long_description = open( "README.txt", 'r').read() @@ -46,5 +46,5 @@ def configuration(parent_package='',top_path=None): author_email = author_email, classifiers = classifiers, configuration = configuration, - version="1.1.7", + version="1.2.0", packages=["prosail"])