From 4f78329781516b4b82ac86d523daad2347126617 Mon Sep 17 00:00:00 2001 From: ThibHlln Date: Wed, 18 Jul 2018 19:10:31 +0100 Subject: [PATCH] updates setup and readme for next version version will fix problem of display on PyPI and also provide wheels for Python 3.6 --- README.md | 12 ++++++++++++ setup.py | 4 +++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f61594f..37c934e 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,16 @@ SMARTcpp is an open-source C++ extension for the hydrological catchment model SM Mockler, E., O’Loughlin, F., and Bruen, M.: Understanding hydrological flow paths in conceptual catchment models using uncertainty and sensitivity analysis, *Computers & Geosciences*, 90, 66–77,[doi:10.1016/j.cageo.2015.08.015](https://dx.doi.org/10.1016/j.cageo.2015.08.015), 2016 +## How to Install + +SMARTcpp is available on PyPI for Python 2.7 and Python 3.6 (both for macOS and Windows), so you can simply use pip: + + python -m pip install smartcpp + +Alternatively, you can download the source code (*i.e.* this repository) and use the command: + + python setup.py install + ## Model Specifications ### Model Inputs @@ -33,6 +43,8 @@ Mockler, E., O’Loughlin, F., and Bruen, M.: Understanding hydrological flow pa ## Version History +* 0.1.1 [18 Jul 2018]: Version with proper PyPI display + * Fixes display issue of README.md on PyPI * 0.1.0 [09 Jul 2018]: First version of SMARTcpp ## Acknowledgment diff --git a/setup.py b/setup.py index 12fc924..6c40461 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='smartcpp', - version='0.1.0', + version='0.1.1', description='SMARTcpp: a C++ extension of the rainfall-runoff SMART for Python', long_description=long_desc, @@ -39,6 +39,8 @@ 'Programming Language :: C++', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython' ],