30 |
30 |
31 # 1. create the argument parser |
31 # 1. create the argument parser |
32 parser = argparse.ArgumentParser( |
32 parser = argparse.ArgumentParser( |
33 description="Graphical regexp editor for the Python re module." |
33 description="Graphical regexp editor for the Python re module." |
34 " It is part of the eric tool suite.", |
34 " It is part of the eric tool suite.", |
35 epilog="Copyright (c) 2004 - 2023 Detlev Offenbach <detlev@die-offenbachs.de>.", |
35 epilog="Copyright (c) 2004 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>.", |
36 ) |
36 ) |
37 |
37 |
38 # 2. add the arguments |
38 # 2. add the arguments |
39 parser.add_argument( |
39 parser.add_argument( |
40 "-V", |
40 "-V", |