nosetests
# remove -SNAPSHOT from src/petlx/__init__.py 
sed -i -e 's/-SNAPSHOT//' src/petlx/__init__.py 
version=`grep VERSION src/petlx/__init__.py | sed -e "s/VERSION[ ]=[ ]'\(.*\)'/\1/"`
echo $version
# git commit and push
git commit -a -m v$version
git push
# git tag and push
git tag -a v$version -m v$version
git push --tags
# update pypi
python setup.py sdist upload
# increment version and add -SNAPSHOT in src/petlx/__init__.py
emacs src/petlx/__init__.py
# git commit and push
git commit -a -m 'increment version'; git push
# activate version at rtfd
# notify
