Fix the owner in setup.py and add convienience scripts

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-07-23 18:49:59 +03:00
parent 5121d88817
commit da935b57c2
Signed by untrusted user who does not match committer: ari
GPG key ID: A50D5B4B599AF8A2
3 changed files with 27 additions and 3 deletions

13
scripts/git.sh Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env sh
set -e
main() {
git diff >/tmp/guacamole_keysyms.diff
git add -A
git commit -sa
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"
}
main "$@"

11
scripts/publish.sh Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env sh
set -xe
main() {
python3 pip install setuptools wheel twine
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
}
main "$@"

View file

@ -1,12 +1,12 @@
import setuptools
import setuptools # type: ignore
with open("README.md", "r") as desc:
long_description: str = desc.read()
setuptools.setup(
name="guacamole_keysyms",
version="0.0.1",
author="Ari Archer",
version="0.0.2",
author="AriArcher",
author_email="ari.web.xyz@gmail.com",
description="Guacamole protocol key mappings for python",
long_description=long_description,