forked from trtg/pyfatsecret
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d38c887
commit 988c5b4
Showing
3 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Simple script to automate the build and release of new packages. | ||
# This is based on the deployment guides found at | ||
# https://packaging.python.org/tutorials/packaging-projects/ | ||
|
||
echo "setting up build tools" | ||
python3 -m pip install --upgrade build | ||
python3 -m pip install --upgrade twine | ||
|
||
echo "creating new build" | ||
python3 -m build | ||
|
||
echo "uploading build assets" | ||
python3 -m twine upload --repository fatsecret dist/* |
Empty file.