diff --git a/.gitignore b/.gitignore index 98ae2dc..70d6c75 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ .idea/ *.pyc .pypirc +*.egg-info/ +dist/ diff --git a/rar.bmp b/rar.bmp deleted file mode 100755 index c89de4e..0000000 Binary files a/rar.bmp and /dev/null differ diff --git a/release.sh b/release.sh new file mode 100644 index 0000000..6f75812 --- /dev/null +++ b/release.sh @@ -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/* diff --git a/setup.py b/setup.py index 4995615..37ac09d 100644 --- a/setup.py +++ b/setup.py @@ -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='Geoff@squiggle.org' )