I have a directory with python libraries and resources (for example unix executable scripts that are forked with subprocess
module with different arguments) - total 10-12 files .py + executables. One of them is including the rest and is the interface to the command line tool they make as whole (it currently begins with #!/usr/bin/env python
and is executed directly).
Is it possible to make them single executable that's compiled on the machine where they are used for easier transportation (I will create a make file that will handle it)?
I found py2exe but that is for Windows executables. Any suggestions are welcome.