11 |
11 |
12 |
12 |
13 def makeAppInfo(argv, name, arg, description, options=None): |
13 def makeAppInfo(argv, name, arg, description, options=None): |
14 """ |
14 """ |
15 Module function to generate a dictionary describing the application. |
15 Module function to generate a dictionary describing the application. |
16 |
16 |
17 @param argv list of commandline parameters (list of strings) |
17 @param argv list of commandline parameters (list of strings) |
18 @param name name of the application (string) |
18 @param name name of the application (string) |
19 @param arg commandline arguments (string) |
19 @param arg commandline arguments (string) |
20 @param description text describing the application (string) |
20 @param description text describing the application (string) |
21 @param options list of additional commandline options |
21 @param options list of additional commandline options |