in uberpoet/moduletree.py [0:0]
def __init__(self, name, node_type, deps=None):
super(ModuleNode, self).__init__()
if deps is None:
deps = []
self.name = name
self.node_type = node_type # app or library
self.deps = deps
# How many code units the module represents. Bigger modules would
# have more code units than smaller modules, with 1 being the 'standard' size.
self.code_units = 1
self.extra_info = None # useful for file indexes and such