Now i'm working with Pyinstaller. I have an script which get images from a img folder..
/python
|----/img
|----|----icon1.ico
|----|----icon2.ico
|----maint.py
My script to generate .exe is
pyinstaller.py --windowed --noconsole --clean --onefile maint.py
the problem is that only generate the .exe file but the whole folder /img is omitted.
Question: which aditional syntax do I need to put in the previous line in order to get automatically the .exe file + /img folder?
I mean: that after execution of pyinstaller.py script, with all arguments, I must see in the /dist folder: the .exe file + the /img folder with all icons or bitmaps files I have for my application
Thanks