I have a python script I am trying to debug in eclipse. I can execute it, breakpoint all that jazz, but this specific script requires a handful of command line parameters. Is it possible to setup my dev environment in eclipse to put these parameters in?
Right now my program is just generating the line to execute, like:
script.py -aword -banother -cword -dmore -eparams -flast -gone
so could I just copy and paste everything after script.py somewhere? or can I hard code them into eclipse? or will I have to hard code the variables within my script?