#Packaging
#=========
#[ ]
\rm -rf dist Jupytils/__pycache__
python upver.py
VER=`cat Jupytils/version.txt `
echo "Installing VERSION: $VER"

python setup.py sdist
python setup.py bdist_wheel --universal

# Manually Set up for Uploading
# ==============================
# Create ~/.pypirc with Following Contents
# [pypi]
# username = sada
# password = Password- Asdf

#Uploading
#=========
twine upload dist/*


