#!/bin/sh
if [ x$1 = x ]; then
    PY=python
else
    PY="$1"
fi
v=`cat VERSION`
printf "Python $PY : Uploading netlogger-$v\n"
$PY setup.py bdist_egg upload -s
