parser.add_argument("--packages",'-p',nargs='+',default=[],help="Which packages do you want to have dependencies for?")
parser.add_argument("--package-files",'-P',nargs='+',default=[],help="Read packages from the given files (usually requirement?.txt files of bob).")
parser.add_argument("--dot-file","-W",help="If specified, the .dot file is written to the given file.")
parser.add_argument("--output-file","-w",default="dependencies.png",help="Specify the (.png) file to write.")
parser.add_argument("--limit-packages",'-l',nargs='+',default=['bob','facereclib','antispoofing'],help="Limit packages read from --package-files to the given namespaces")
parser.add_argument("--plot-external-dependencies",'-X',action='store_true',help="Include external dependencies into the plot?")
parser.add_argument("--rank-base-tools-same",'-R',action='store_true',help="Set the rank of packages bob.extension, bob.core and bob.blitz at the same size")
parser.add_argument("--vertical",'-V',action='store_true',help="Display the dot graph in vertical direction")
parser.add_argument("--verbose",'-v',action='store_true',help="Print more information")