From 8ab838839a0006277793e4a02fd8f013625ccecf Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Thu, 21 Nov 2024 01:41:46 -0400 Subject: [PATCH] Try to figure out build system? --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9b870b7..502e085 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,12 @@ 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 = "onedir", bundle = false } +DailyWallpaper = { source = "app/main.py", type = "onefile", bundle = false } [build-system] requires = ["poetry-core"]