diff --git a/README.md b/README.md index 708d996..a902e92 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/setup.py b/setup.py index 4840ca0..fca0a29 100644 --- a/setup.py +++ b/setup.py @@ -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'),