23 Function to create an argument parser. |
23 Function to create an argument parser. |
24 |
24 |
25 @return created argument parser object |
25 @return created argument parser object |
26 @rtype argparse.ArgumentParser |
26 @rtype argparse.ArgumentParser |
27 """ |
27 """ |
28 from eric7.UI.Info import Version |
28 from eric7.__version__ import Version |
29 |
29 |
30 # 1. create the argument parser |
30 # 1. create the argument parser |
31 parser = argparse.ArgumentParser( |
31 parser = argparse.ArgumentParser( |
32 description="Graphical tool of the eric tool suite to manage Python packages" |
32 description="Graphical tool of the eric tool suite to manage Python packages" |
33 " with 'pip'.", |
33 " with 'pip'.", |