File: release

package info (click to toggle)
pyatag 0.3.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 168 kB
  • sloc: python: 503; sh: 4; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Pushes a new version to PyPi.
# Stop on errors
set -e

#cd "$(dirname "$0")/.."

rm -rf dist
python3 setup.py sdist
python3 -m twine upload dist/* --skip-existing