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

Method get_dependencies

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

Source from the content-addressed store, hash-verified

106 return self.info["info"]["version"]
107
108 def get_dependencies(self) -> Generator[Requirement, None, None]:
109 deps = self.info["info"].get("requires_dist", [])
110 if deps:
111 for req_line in deps:
112 yield Requirement(req_line)
113
114 def download_release(
115 self,

Callers 1

test_package_infoFunction · 0.80

Calls 1

getMethod · 0.80

Tested by 1

test_package_infoFunction · 0.64