MCPcopy Index your code
hub / github.com/pymupdf/PyMuPDF / _entry_points_text

Method _entry_points_text

pipcl.py:1010–1019  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1008 return ret
1009
1010 def _entry_points_text(self):
1011 if self.entry_points:
1012 if isinstance(self.entry_points, str):
1013 return self.entry_points
1014 ret = ''
1015 for key, values in self.entry_points.items():
1016 ret += f'[{key}]\n'
1017 for value in values:
1018 ret += f'{value}\n'
1019 return ret
1020
1021 def _call_fn_build( self, config_settings=None):
1022 assert self.fn_build

Callers 2

build_wheelMethod · 0.95
installMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected