Compare commits

..

2 Commits

Author SHA1 Message Date
8ab838839a Try to figure out build system? 2024-11-21 01:41:46 -04:00
ef3aa58fe9 Add somewhat working build system 2024-11-21 01:10:58 -04:00

View File

@ -22,6 +22,15 @@ pywin32 = "^308"
[tool.poetry.scripts]
DailyWallpaper = "app.main:main"
# https://pypi.org/project/poetry-pyinstaller-plugin/
# https://stackoverflow.com/a/78050613
[tool.poetry-pyinstaller-plugin.package]
providers = "."
settings = "."
[tool.poetry-pyinstaller-plugin.scripts]
DailyWallpaper = { source = "app/main.py", type = "onefile", bundle = false }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"