diff --git a/.gitignore b/.gitignore index 46080b4..0c7eb1e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea .venv -**/__pycache__ \ No newline at end of file +**/__pycache__ +dist \ No newline at end of file diff --git a/publish.sh b/publish.sh new file mode 100755 index 0000000..b350d1c --- /dev/null +++ b/publish.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +python3 -m build +python3 -m twine upload --repository pypi dist/* \ No newline at end of file