File: deploy.sh

package info (click to toggle)
python-pybedtools 0.10.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 16,620 kB
  • sloc: python: 10,030; cpp: 899; makefile: 142; sh: 57
file content (13 lines) | stat: -rwxr-xr-x 444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# Sometimes when running python setup.py sdist upload, MAINIFEST.in can catch
# extras in the development source dir that haven't been tested. This ensures
# that the only things making it into the source distribution has been commited
# to the repo.
HERE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
TMP=/tmp/pybedtools-deploy
rm -rf $TMP
git clone $HERE/.. $TMP
cd $TMP
python setup.py cythonize sdist
twine upload dist/*