blob: b257904328d2f5dc3b5f07e7d6c883fb9e2055a9 [file] [log] [blame]
Donald Stufft8aaff542014-11-11 10:24:11 -05001"""Basic pip uninstallation support, helper for the Windows uninstaller"""
2
3import argparse
4import ensurepip
Igor Filatovcf7197a2017-09-25 04:03:24 +03005import sys
Donald Stufft8aaff542014-11-11 10:24:11 -05006
7
8def _main(argv=None):
9 parser = argparse.ArgumentParser(prog="python -m ensurepip._uninstall")
10 parser.add_argument(
11 "--version",
12 action="version",
13 version="pip {}".format(ensurepip.version()),
14 help="Show the version of pip this will attempt to uninstall.",
15 )
16 parser.add_argument(
17 "-v", "--verbose",
18 action="count",
19 default=0,
20 dest="verbosity",
21 help=("Give more output. Option is additive, and can be used up to 3 "
22 "times."),
23 )
24
25 args = parser.parse_args(argv)
26
Igor Filatovcf7197a2017-09-25 04:03:24 +030027 return ensurepip._uninstall_helper(verbosity=args.verbosity)
Donald Stufft8aaff542014-11-11 10:24:11 -050028
29
30if __name__ == "__main__":
Igor Filatovcf7197a2017-09-25 04:03:24 +030031 sys.exit(_main())