I have a project that is described using a standard installation setup.py, with some .pyfiles that need to be executable (in the scripts=package part ) and some .pyfiles that are just libraries imported by these script files.
Is there a way to convert this installation into a series of binary files with PyInstaller, so that each of the files that are described setup.pyfor the scripts are converted to executable files? The rest .pyare internal libraries, so, of course, they would not need to be converted and not used after creating the binary files.
To clarify, I'm only interested in creating the binary files of Mac OS X and Linux, not Windows. thank.
source
share