-
Notifications
You must be signed in to change notification settings - Fork 4
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
Geoff Kendal
committed
Feb 8, 2021
1 parent
0c433be
commit 1cb9b53
Showing
4 changed files
with
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.idea/ | ||
*.pyc | ||
.pypirc | ||
*.egg-info/ | ||
dist/ |
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,9 @@ | ||
#!/bin/bash | ||
|
||
# gitpush > git release > this! | ||
|
||
rm -rf StarTSPImage.egg-info | ||
rm -rf dist | ||
python3 setup.py sdist | ||
pip3 install twine | ||
twine upload dist/* |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
long_description_content_type="text/markdown", | ||
install_requires=['Pillow'], | ||
url='https://github.com/geftactics/python-StarTSPImage', | ||
download_url = 'https://github.com/geftactics/python-StarTSPImage/archive/0.1.0.tar.gz' | ||
download_url = 'https://github.com/geftactics/python-StarTSPImage/archive/0.1.0.tar.gz', | ||
author='Geoff Kendal', | ||
author_email='[email protected]' | ||
) |