== uploading to pypi

# Have a clean checkout so that the manifest wildcards don't pick up anything
# screwy
python setup.py sdist upload -s


== Creating a .deb package ==

# Run the following commands:
export VERSION=(version you are packaging)
python setup.py sdist
cd dist
tar zxvf jsonwidget-${VERSION}.tar.gz
cd jsonwidget-${VERSION}
# use "-uc -us" to skip signing
# -S is "source only"
dpkg-buildpackage -rfakeroot -S

== Uploading to the PPA ==

dput ppa:robla/ppa python-jsonwidget_${VERSION}_source.changes



== Generating a changelog ==

hg log -rtip:0.1.3 --template '  * {desc}\n'
