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"