generated from Hazel/python-project
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install build tools
|
|
pip install build
|
|
|
|
# build package
|
|
python3 -m build
|
|
|
|
# upload to pypi
|
|
python3 -m twine upload dist/*
|
|
python3 -m twine upload --skip-existing --repository gitea dist/* |