7 lines
106 B
Bash
7 lines
106 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
rm -rf dist/
|
||
|
python3 setup.py sdist
|
||
|
python3 setup.py bdist_wheel
|
||
|
twine upload dist/*
|