()
| 226 | |
| 227 | |
| 228 | def main(): |
| 229 | parser = argparse.ArgumentParser() |
| 230 | parser.add_argument( |
| 231 | "-o", |
| 232 | "--outdir", |
| 233 | type=str, |
| 234 | help="Path to the output directory" |
| 235 | ) |
| 236 | parser.add_argument( |
| 237 | "-i", |
| 238 | "--ignore", |
| 239 | type=str, |
| 240 | help="An ignored input - may be useful to add a " |
| 241 | "dependency between custom targets" |
| 242 | ) |
| 243 | args = parser.parse_args() |
| 244 | |
| 245 | outdir_abs = os.path.join(os.getcwd(), args.outdir) |
| 246 | |
| 247 | generate_api(outdir_abs) |
| 248 | |
| 249 | |
| 250 | if __name__ == "__main__": |
no test coverage detected