From 844cdec0ff0424fc8eb9b9db56490faefb3a1d65 Mon Sep 17 00:00:00 2001 From: David Date: Thu, 16 Jul 2026 19:44:39 +0300 Subject: [PATCH] fix: .gitignore and publish script --- .gitignore | 3 ++- publish.sh | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100755 publish.sh 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