From bbedaf7eb4aef48787292270a938947c23a65c26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Doubravsk=C3=BD?= Date: Thu, 26 Mar 2026 06:22:37 +0100 Subject: [PATCH] Initial commit --- .python-version | 1 + pyproject.toml | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .python-version create mode 100644 pyproject.toml diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..21d1469 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "gogupdater" +version = "0.1.0" +description = "" +authors = [ + {name = "Jan Doubravský",email = "jan.doubravsky@gmail.com"} +] +requires-python = ">=3.14,<3.15" +dependencies = [ +] + +[tool.poetry] +package-mode = false + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api"