Mercurial > hg > MakeItSo
view makeitso/python_package/INSTALL.sh @ 105:67b50417b8d1
stub out loading api templates; this wont work, however, since one is in the middle of a module trying to load a module that depends on the module you are in
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 11 Jan 2011 19:23:53 -0800 |
parents | cc17537254d2 |
children |
line wrap: on
line source
#!/usr/bin/bash # installation script for {{project}} # {{description}} REPO='{{repo}}' DEST='{{project}}' # name of the virtualenv if [ "$#" != "0" ] then DEST=$1 fi if which virtualenv then virtualenv ${DEST} else curl https://bitbucket.org/ianb/virtualenv/raw/tip/virtualenv.py | python - ${DEST} fi cd ${DEST} . bin/activate # linux only mkdir src cd src hg clone ${REPO} cd {{project}} python setup.py develop