8 lines
112 B
Bash
8 lines
112 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
rm -rf dist/ build/ *.egg-info
|
||
|
|
python3 -m build
|
||
|
|
twine upload dist/*
|