Skip to content

Commit

Permalink
updates setup and readme for next version
Browse files Browse the repository at this point in the history
version will fix problem of display on PyPI and also provide wheels for Python 3.6
  • Loading branch information
ThibHlln committed Jul 18, 2018
1 parent ebf8055 commit 4f78329
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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'
],

Expand Down

0 comments on commit 4f78329

Please sign in to comment.