From d750b0a2ab9f4e08359874e2211a6b4a169c7fe1 Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Wed, 2 Apr 2025 12:04:37 +0300 Subject: [PATCH] [+] poetry --- poetry.toml | 0 pyproject.toml | 17 +++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 poetry.toml create mode 100644 pyproject.toml diff --git a/poetry.toml b/poetry.toml new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3713eda --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "pywinmutex" +version = "0.1.0" +description = "Simple handling mutexes with pywin32" +authors = [ + {name = "SantaSpeen",email = "santaspeen@gmail.com"} +] +license = {text = "MIT"} +readme = "README.md" +requires-python = ">=3.10" +dependencies = [ +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api"