From 05919de1d3c80583c704668f8d16c9936040e955 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 28 Oct 2010 09:30:30 +0100 Subject: [PATCH] Added extras to the README and virtualenv setup --- README | 3 ++- setup-env.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README b/README index 60f28e6..75db2b3 100644 --- a/README +++ b/README @@ -3,9 +3,10 @@ REQUIREMENTS Use ./setup-env.sh to setup the virtualenv for Auth, you'll also need the following packages (as named on Debian): -python-zeroc-ice (ZeroC ICE Bindings for Python) +python-zeroc-ice (ZeroC ICE Bindings for Python, only needed if you are using Mumble connecitivty) python-imaging (PIL) python-mysqldb (MySQL connectors for Python) +python-crypto (SSL and related stuff for Django) RUNNING ------- diff --git a/setup-env.sh b/setup-env.sh index c591db9..bbc962c 100755 --- a/setup-env.sh +++ b/setup-env.sh @@ -1,3 +1,4 @@ +rm -rf ./env virtualenv -q --distribute env . ./env/bin/activate pip install -q -r requirements.txt