239 parser = optparse.OptionParser(description="Create runtime dependecy graph for shared library. The output is a graph in DOT language. To visualize it use, e.g. 'dot -O -Tps mygraph.dot'. The rectangular nodes represent direct dependencies. Nodes belonging to the same project have the same color.",
240 usage="%prog [OPTIONS] LIB [LIB...]")
241
242 parser.add_option("-o", "--output",
243 help="File for DOT source code (default is LIB.dot)")