blob: 9782c461e23e5c96ca4c1cf3b2946da1122d5004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Release HOWTO
=============
To make a release, edit "version" in setup.py and run:
python setup.py egg_info -RDb "" sdist
To upload the generated source distribution to PyPI, run:
python setup.py egg_info -RDb "" sdist register upload
Note that if you ignore the ``egg_info -RDb ""`` part, Distribute will generate
a development release tarball with ``.dev``.
|