chore: update poetry.lock

This commit is contained in:
thePR0M3TH3AN
2025-08-21 16:38:15 -04:00
parent 428efd02b4
commit 61b1aa6773
2 changed files with 241 additions and 8 deletions

View File

@@ -36,14 +36,15 @@ PyJWT = ">=2.8.0"
slowapi = "^0.1.9"
toga-core = { version = ">=0.5.2", optional = true }
pillow = { version = "*", optional = true }
toga-gtk = { version = ">=0.5.2", optional = true }
toga-winforms = { version = ">=0.5.2", optional = true }
toga-cocoa = { version = ">=0.5.2", optional = true }
[tool.poetry.extras]
gui = ["toga-core", "pillow"]
[project.optional-dependencies]
gui-gtk = ["toga-gtk>=0.5.2"]
gui-win = ["toga-winforms>=0.5.2"]
gui-mac = ["toga-cocoa>=0.5.2"]
gui-gtk = ["toga-gtk"]
gui-win = ["toga-winforms"]
gui-mac = ["toga-cocoa"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2"