10 This is the main Python script of the API generator. It is |
10 This is the main Python script of the API generator. It is |
11 this script that gets called via the API generation interface. |
11 this script that gets called via the API generation interface. |
12 This script can be used via the commandline as well. |
12 This script can be used via the commandline as well. |
13 """ |
13 """ |
14 |
14 |
|
15 import fnmatch |
|
16 import glob |
15 import os |
17 import os |
16 import sys |
18 import sys |
17 import glob |
19 |
18 import fnmatch |
20 from eric7 import DocumentationTools, Utilities |
19 |
|
20 from eric7.Utilities import ModuleParser |
|
21 from eric7.DocumentationTools.APIGenerator import APIGenerator |
21 from eric7.DocumentationTools.APIGenerator import APIGenerator |
22 from eric7.UI.Info import Version |
22 from eric7.UI.Info import Version |
23 from eric7 import DocumentationTools, Utilities |
23 from eric7.Utilities import ModuleParser |
24 |
24 |
25 |
25 |
26 def usage(): |
26 def usage(): |
27 """ |
27 """ |
28 Function to print some usage information. |
28 Function to print some usage information. |