Skip to content

Commit

Permalink
Merge branch 'release/0.2.0-rc.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
craigmaloney committed Oct 16, 2017
2 parents 1ebc336 + cabf5a8 commit 27c2f09
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,23 @@ https://github.com/DTVD/rainbowstream).

[![tootstream displaying the Federated timeline](https://i.imgur.com/LqjUXpt.jpg)](https://asciinema.org/a/3m87j1s402ic2llfp517okpv2?t=7&speed=2)

## Install
## Install via pip

1: Create a virtual environment
```
# Create a virtual environment
$ virtualenv -p python3 /path/to/tootstream
$ source /path/to/tootstream/bin/activate
```

2: Install via pip
```
$ pip install tootstream
```

3: See the *Usage* section for how to use Tootstream.

## Install for development

1: Clone this repo and enter the project directory through a virtual environment
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name="tootstream",
version="0.2.0rc3",
version="0.2.0rc4",
install_requires=[line.strip() for line in open('requirements.txt')],

packages=find_packages('src'),
Expand Down

0 comments on commit 27c2f09

Please sign in to comment.