From f296b8e1bcd897a1dc6cc95773964afd5302e3a4 Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Wed, 2 Apr 2025 14:17:18 +0300 Subject: [PATCH] [^] version 1.0.1 [+] classifiers [+] urls --- pyproject.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fde9235..778f5d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "winmutex" -version = "1.0.0" +version = "1.0.1" description = "Simple handling mutexes with pywin32" authors = [ {name = "SantaSpeen",email = "santaspeen@gmail.com"} @@ -11,7 +11,17 @@ requires-python = ">=3.10,<4.0" dependencies = [ "pywin32 (>=310,<311)" ] +dynamic = [ "classifiers" ] +[project.urls] +repository = "https://github.com/SantaSpeen/winmutex" + +[tool.poetry] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "Operating System :: Microsoft :: Windows", + "Topic :: Software Development :: Libraries :: Python Modules" +] [build-system] requires = ["poetry-core>=2.0.0,<3.0.0"]