winmutex/pyproject.toml
SantaSpeen f296b8e1bc [^] version 1.0.1
[+] classifiers
[+] urls
2025-04-02 14:17:18 +03:00

29 lines
698 B
TOML

[project]
name = "winmutex"
version = "1.0.1"
description = "Simple handling mutexes with pywin32"
authors = [
{name = "SantaSpeen",email = "santaspeen@gmail.com"}
]
license = {text = "MIT License"}
readme = "README.md"
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"]
build-backend = "poetry.core.masonry.api"