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