mirror of
https://github.com/kennethreitz-archive/python-build.git
synced 2026-06-05 15:20:16 +00:00
14 lines
419 B
Python
14 lines
419 B
Python
from optparse import OptionParser
|
|
from pythonbrew.define import VERSION, PATH_BIN_PYTHONBREW
|
|
|
|
parser = OptionParser(usage="%prog COMMAND [OPTIONS]",
|
|
prog=PATH_BIN_PYTHONBREW,
|
|
version=VERSION,
|
|
add_help_option=False)
|
|
parser.add_option(
|
|
'-h', '--help',
|
|
dest='help',
|
|
action='store_true',
|
|
help='Show help')
|
|
parser.disable_interspersed_args()
|