Пример #1
0
 def __init__(self, target, root_dir):
     self.target = target
     self.root = root_dir
     distdir = os.path.join(self.root, 'dist')
     self.chroot = Chroot(root_dir, distdir, target.name)
     codegen_root = tempfile.mkdtemp(dir=self.chroot.path(),
                                     prefix='codegen.')
     self.codegen_root = os.path.relpath(codegen_root, self.chroot.path())
     self.detected_packages = set()
     self.detected_namespace_packages = set()
Пример #2
0
 def __init__(self, target, root_dir):
     self.target = target
     self.root = root_dir
     distdir = os.path.join(root_dir, 'dist')
     self.chroot = Chroot(root_dir, distdir, target.name)