commit 2d8401e15755190a1a9502fe9c47cfe4221991f9 parent 6928ad76be034e6e0015fb7d11a53d998a32272f Author: Samuel Walladge <samuel@swalladge.id.au> Date: Thu, 7 Jul 2016 13:32:16 +0930 add info about installing with pip Diffstat:
M | .gitignore | | | 11 | ++++++++++- |
M | README.md | | | 9 | ++++++--- |
M | simplenote_cli/__init__.py | | | 2 | +- |
3 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1,3 +1,12 @@ +# byte-compiled python files *.pyc -.ropeproject + +# venv dir env + +# python packaging files/dirs +build +dist +MANIFEST + +.ropeproject diff --git a/README.md b/README.md @@ -25,9 +25,12 @@ Check your OS distribution for installation packages. ### Installation -* Clone this repository to your hard disk: `git clone https://github.com/insanum/sncli.git` -* Install the requirements `pip3 install -r requirements.txt` -* Install _sncli_: `python3 setup.py install` +* Via pip (latest release): + - `pip3 install sncli` +* Manually: + - Clone this repository to your hard disk: `git clone https://github.com/insanum/sncli.git` + - Install the requirements `pip3 install -r requirements.txt` + - Install _sncli_: `python3 setup.py install` ### Features diff --git a/simplenote_cli/__init__.py b/simplenote_cli/__init__.py @@ -1,5 +1,5 @@ __productname__ = 'sncli' -__version__ = '0.1.1' +__version__ = '0.1.2' __copyright__ = "Copyright (c) 2014 Eric Davis" __author__ = "Eric Davis" __author_email__ = "edavis@insanum.com"