From b4fafbf5f0f8af855da02831c10b830d8f34b5ad Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Wed, 2 Apr 2025 12:13:17 +0300 Subject: [PATCH] [+] poetry settings --- poetry.toml | 3 +++ pyproject.toml | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/poetry.toml b/poetry.toml index e69de29..384db5f 100644 --- a/poetry.toml +++ b/poetry.toml @@ -0,0 +1,3 @@ +[virtualenvs] +create = true +in-project = true \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 3713eda..e2d615a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,10 +5,11 @@ description = "Simple handling mutexes with pywin32" authors = [ {name = "SantaSpeen",email = "santaspeen@gmail.com"} ] -license = {text = "MIT"} +license = {text = "MIT License"} readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.10,<4.0" dependencies = [ + "pywin32 (>=310,<311)" ]