File: upload_package

package info (click to toggle)
pyrr 0.10.3-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 956 kB
  • sloc: python: 5,865; makefile: 132; sh: 23
file content (7 lines) | stat: -rwxr-xr-x 144 bytes parent folder | download
1
2
3
4
5
6
7
#!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
pushd $DIR
cd ..
python setup.py sdist bdist_wheel
twine upload dist/*
popd