Functions | |
def | mako_plugin (dictionary) |
def | transitive_deps (lib_map, node) |
def transitive_dependencies.mako_plugin | ( | dictionary | ) |
The exported plugin code for transitive_dependencies. Iterate over each list and check each item for a deps list. We add a transitive_deps property to each with the transitive closure of those dependency lists. The result list is sorted in a topological ordering.
Definition at line 47 of file transitive_dependencies.py.
def transitive_dependencies.transitive_deps | ( | lib_map, | |
node | |||
) |
Returns a list of transitive dependencies from node. Recursively iterate all dependent node in a depth-first fashion and list a result using a topological sorting.
Definition at line 22 of file transitive_dependencies.py.