require pillow

This commit is contained in:
j 2015-11-26 10:38:40 +01:00
parent c9c056fa7a
commit 199fcfa418
2 changed files with 5 additions and 0 deletions

4
ctl
View File

@ -11,11 +11,15 @@ BASE=`pwd`
SYSTEM=`uname -s`
PLATFORM=`uname -m`
if [ -e "$BASE/local_platform" ]; then
export PLATFORM_ENV="$BASE/local_platform"
else
if [ $SYSTEM == "Linux" ]; then
export PLATFORM_ENV="$BASE/platform/${SYSTEM}_${PLATFORM}"
else
export PLATFORM_ENV="$BASE/platform/$SYSTEM"
fi
fi
if [ $SYSTEM == "Darwin" ]; then
export DYLD_FALLBACK_LIBRARY_PATH="$PLATFORM_ENV/lib"
fi

View File

@ -4,3 +4,4 @@ ed25519>=1.4
SQLAlchemy==0.9.7
pyopenssl>=0.15
pyCrypto>=2.6.1
pillow