I am trying to use pyinstaller
to create an installer for my python program, which is typically run as follows:
python -m <folder_name>
( I can't run by calling __main.__py
)
Inside <folder_name>
I have __main__.py
, an empty __init__.py
, and various folders containing python code.
I don't see any options in the pyinstaller documentation to support this type of program structure. Are there options for this?