48a8789c4d
Was planning to do this myself, but I forgot so many times I'm just adding it...
10 lines
135 B
Bash
Executable File
10 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
. venv/bin/activate
|
|
rm -rf build/
|
|
rm -f dist/*
|
|
mkdir -p dist
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/*
|