File: release.sh

package info (click to toggle)
python-dictobj 0.4-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: python: 176; sh: 9; makefile: 8
file content (14 lines) | stat: -rwxr-xr-x 257 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

# Run build
pandoc README.md -w rst -o README.txt
python setup.py sdist upload
markdown README.md > index.html
zip pypi.zip index.html

# Do cleanup
rm -f README.txt index.html
rm -rf dist
rm -rf dictobj.egg-info
rm -rf __pycache__
rm -f *.pyc