src/eric7/eric7_virtualenv.py

branch
eric7
changeset 10439
21c28b0f9e41
parent 10303
ee1aadab1215
child 10683
779cda568acb
equal deleted inserted replaced
10438:4cd7e5a8b3cf 10439:21c28b0f9e41
1 #!/usr/bin/env python3 1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 3
4 # Copyright (c) 2021 - 2023 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2021 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>
5 # 5 #
6 6
7 """ 7 """
8 eric Virtual Environment Manager. 8 eric Virtual Environment Manager.
9 9
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 Virtual" 32 description="Graphical tool of the eric tool suite to manage Python Virtual"
33 " Environments.", 33 " Environments.",
34 epilog="Copyright (c) 2021 - 2023 Detlev Offenbach <detlev@die-offenbachs.de>.", 34 epilog="Copyright (c) 2021 - 2024 Detlev Offenbach <detlev@die-offenbachs.de>.",
35 ) 35 )
36 36
37 # 2. add the arguments 37 # 2. add the arguments
38 parser.add_argument( 38 parser.add_argument(
39 "-V", 39 "-V",

eric ide

mercurial