blob: 467a1c2418d0d493f7c54305fc830a1ac241382e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
export VERSION="0.6.3"
# creating the releases
rm -rf dist
# now preparing the source release
python2.6 setup.py -q egg_info -RDb '' sdist register upload
# pushing the bootstrap script
scp distribute_setup.py ziade.org:nightly/build/
|