fix: poetry update...

This commit is contained in:
Kat Inskip 2025-07-22 12:43:50 -07:00
parent 15bb019cdd
commit c887727049
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
4 changed files with 605 additions and 13 deletions

View file

@ -14,15 +14,20 @@ packages = [
[tool.poetry.scripts]
gui = "konawall.gui:main"
[project]
name = "konawall"
version = "0.1.0"
dynamic = [ "dependencies" ]
[tool.poetry.dependencies]
python = "^3.11"
pillow = "^10.0.1"
screeninfo = "^0.8.1"
requests = "^2.31.0"
termcolor = "^2.3.0"
wxpython = "^4.2.2"
humanfriendly = "^10.0"
xdg-base-dirs = "^6.0.1"
python = ">=3.11,<4.0.0"
pillow = ">=10.0.1"
screeninfo = ">=0.8.1"
requests = ">=2.31.0"
termcolor = ">=2.3.0"
wxpython = ">=4.2.2"
humanfriendly = ">=10.0"
xdg-base-dirs = ">=6.0.1"
[build-system]
requires = [ "poetry-core" ]