7 lines
112 B
Bash
7 lines
112 B
Bash
#!/usr/bin/env bash
|
|
|
|
# publish to PyPI
|
|
rm -r dist || true
|
|
python setup.py sdist bdist_wheel
|
|
twine upload dist/*
|