From bb9edbcc3beb5a35154e0d725b9e59ed619d9d97 Mon Sep 17 00:00:00 2001 From: Luke Zulauf Date: Tue, 8 Aug 2017 12:29:56 -0700 Subject: [PATCH] Update README.md with target information --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 340db82..06c5a61 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Different styling and functionality can be configured by passing arguments into @Gooey(advanced=Boolean, # toggle whether to show advanced config or not language=language_string, # Translations configurable via json show_config=True, # skip config screens all together + target=executable_cmd, # Explicitly set the subprocess executable arguments program_name='name', # Defaults to script name program_description, # Defaults to ArgParse Description default_size=(610, 530), # starting size of the GUI @@ -250,6 +251,7 @@ Just about everything in Gooey can be customized by passing arguments to the dec | advanced | Toggles whether to show the 'full' configuration screen, or a simplified version | | show_config | Skips the configuration all together and runs the program immediately | | language | Tells Gooey which language set to load from the `gooey/languages` directory.| +| target | Tells Gooey how to re-invoke itself. By default Gooey will find python, but this allows you to specify the program (and arguments if supplied).| |program_name | The name displayed in the title bar of the GUI window. If not supplied, the title defaults to the script name pulled from `sys.argv[0]`. | | program_description | Sets the text displayed in the top panel of the `Settings` screen. Defaults to the description pulled from `ArgumentParser`. | | default_size | Initial size of the window |