MCPcopy Index your code
hub / github.com/SourceCode-AI/aura / has_wheel

Method has_wheel

aura/package.py:467–474  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

465 return self.Value(homepage, homepage, "Has homepage", f"+{homepage}")
466
467 def has_wheel(self) -> Value:
468 wheel = 0
469 for r in self.pkg["urls"]:
470 if r["packagetype"] == "bdist_wheel":
471 wheel = 1
472 break
473
474 return self.Value(wheel, wheel, "Has wheel", f"+{wheel}")
475
476 def has_sdist_source(self) -> Value:
477 sdist = 0

Callers 1

get_score_entriesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected