parser.add_option('-s', '--secret', metavar='<secret>', help='restrict server to only allow clients that specify <secret> when connecting')
parser.add_option('-i', '--interface', default='0.0.0.0', metavar='<ip-address>', help='listen for debugger connections on interface <ip-address>')
parser.add_option('-p', '--port', type='int', default=DEFAULT_PORT, metavar='<port>', help='listen for debugger connections on <port>')
parser.add_option('--certfile', metavar='<file>', help='Enable SSL and use PEM certificate from <file> to secure connection')
parser.add_option('--keyfile', metavar='<file>', help='Use private key from <file> to secure connection (requires --certfile)')
parser.add_option('--no-output-redirection', dest='redirect_output', action='store_false', default=True, help='do not redirect stdout and stderr to debugger')
parser.add_option('--wait', dest='wait', action='store_true', default=False, help='wait for a debugger to attach before executing')