I have had success using pyInstaller 2.0 to create executables from simple python scripts. I have a python script which runs different searches and produces different output based on command line arguments. Is there a way to use pyInstaller to create an executable of the script assuming certain arguments? As in, I want to produce an exe file that will run and produce the same output as if I were to run it from the command line as follows:
python pacman.py --layout mediumMaze --pacman SearchAgent
Is this possible with pyInstaller 2.0? I have not been able to find this addressed in the provided manual. Thank you in advance.
pacman.pyto assume these arguments as default?