From: # Force all the relevant distros to be copied or activated for dist in distros: if dist.key not in
sellinstalled_projects: selfeasy_install(dist.as_requirement()) log.info("Finished processing
dependencies for %s", requirement)
def should_unzip(self, dist):
if self.zip_ok is not None:
return not self.zip_ok
if dist.has_metadata('not-zip-safe'):
return True
if not dist.has_metadata('zip-safe'):
return True
return False
EFTA00504004