Tell pyinstaller to always include all of cliff.

This works around problems trying to load the lister plugins, which
cliff tries to find dynamically at runtime.
This commit is contained in:
yrriban 2025-09-06 01:30:38 -04:00
parent 9d1eec78fb
commit 694f9f3d1f

View file

@ -28,3 +28,6 @@ dcc = "dcc.main:main"
[tool.poetry-pyinstaller-plugin.scripts]
dcc = { source = "dcc/main.py", type = "onefile" }
[tool.poetry-pyinstaller-plugin.collect]
all = ["cliff"]