Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
Improved dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
anze3db committed Aug 20, 2014
1 parent bcc641e commit b222904
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
@@ -1,5 +1,8 @@
language: python
python:
- "2.7"
install: "pip install -r requirements.txt"
install:
- pip install virtualenv
- ./setup_venv

script: ./run_tests
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -12,12 +12,14 @@ Plugins:

All Psywerx* plugins require the psywerx server (https://github.com/Smotko/psywerx)

Run:
Usage:
---
pip install -r requirements.txt
# setup:
pip install virtualenv
./setup_venv
# start dev in mode:
./run
# daemon:
# start as daemon:
./run_daemon start|stop|restart
# tests:
# run tests:
./run_tests
1 change: 1 addition & 0 deletions requirements.txt
Expand Up @@ -3,3 +3,4 @@ Pillow==2.2.1
tweepy==2.3.0
gdata==2.0.18
pytest==2.6.1
mock==1.0.1
4 changes: 4 additions & 0 deletions setup_venv
@@ -0,0 +1,4 @@
#!/bin/sh
virtualenv venv
. venv/bin/activate
pip install -r requirements.txt

0 comments on commit b222904

Please sign in to comment.