Skip to content

Commit

Permalink
version bump: 0.0.2a2
Browse files Browse the repository at this point in the history
 - pip installation available again
  • Loading branch information
gdassori committed May 20, 2018
1 parent 5b304a1 commit c8a1174
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
[![travis](https://travis-ci.org/gdassori/spruned.svg?branch=master)](https://travis-ci.org/gdassori/spruned)
[![coveralls](https://coveralls.io/repos/github/gdassori/spruned/badge.svg)](https://coveralls.io/github/gdassori/spruned)
[![rtd](https://readthedocs.org/projects/spruned/badge/?version=latest)](http://spruned.readthedocs.io/en/latest/#)
[![PyPI version](https://badge.fury.io/py/spruned.svg)](https://badge.fury.io/py/spruned)

#### What's this?

spruned is a bitcoin pseudonode for lightweight systems. <br />
Expand Down Expand Up @@ -33,15 +35,27 @@ spruned works with Python >= 3.5.2. Right now it should work only on Linux syste
It make intensive usage of connectrum, pybitcointools and pycoinnet libraries. Thanks to mantainers & contributors! <br />
Especially at this stage of development (but it would be better always), it is recommended to use virtualenv to run spruned.

#### Installation from github

#### Installation from pypi
```console
$ cd ~/src
$ sudo apt-get install libleveldb-dev python3-dev git virtualenv gcc g++
$ git clone https://github.com/gdassori/spruned.git
$ cd spruned
$ virtualenv -p python3.5 venv
$ . venv/bin/activate
$ pip install spruned
```

#### Installation from github

```console
$ cd ~/src
$ sudo apt-get install libleveldb-dev python3-dev git virtualenv gcc g++
$ git clone https://github.com/gdassori/spruned.git
$ cd spruned
$ virtualenv -p python3.6 venv
$ . venv/bin/activate
$ pip install -r requirements.txt
$ python setup.py install
```
Expand Down
2 changes: 1 addition & 1 deletion spruned/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '0.0.1a7'
__version__ = '0.0.2a2'
__bitcoind_version_emulation__ = '0.16'

0 comments on commit c8a1174

Please sign in to comment.