# for building and uploading to pypi

# roll version number in setup.py
...
version='<newvers>',
...

# upload images to http://imgh.us/

# update the README.rst by generating it from the md version
pandoc --from=markdown --to=rst --output=README.rst README.md

# build a distro:
sudo python setup.py sdist

# upload to pypi
twine upload dist/yac-<newvers>.tar.gz
