summaryrefslogtreecommitdiff
path: root/build_upload
blob: 03e1f68b7e8a17b0ea025df57465626c117d9544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# this is supposed to be used from within the package root dir,
#   too lazy to make it more general

echo "building package"
python -m build

echo "uploading to pypi"
twine upload dist/*

echo "removing dist/*"
rm -r dist