thmahe / poetry-pyinstaller-plugin

Poetry plugin to build and/or bundle binaries with PyInstaller
https://pypi.org/project/poetry-pyinstaller-plugin/
MIT License
18 stars 7 forks source link

Feature request: multiple hiddenimport(s) #17

Closed mrwilby closed 2 months ago

mrwilby commented 3 months ago

In the pyinstaller framework, it's possible to specify multiple hiddenimport parameters, see:

https://pyinstaller.org/en/stable/usage.html#options

--hidden-import MODULENAME, --hiddenimport MODULENAME

    Name an import not visible in the code of the script(s). This option can be used multiple times.

When testing using a list for this option in poetry-pyinstaller-plugin, it appears that only a single string value is permitted. It would be great if we could specify an array of values.