package.sh 214 Bytes
Newer Older
anton's avatar
anton committed
1
2
3
4
5
6
7
8
#!/usr/bin/env bash

ROOT=$(realpath $(dirname $0))
cd ${ROOT}

python3 -m pip install --upgrade setuptools wheel twine
python3 setup.py sdist
echo "Inspect dist and upload with \"python3 -m twine upload dist/*\""