Return EntryPoints for this distribution. Custom providers may provide the ``entry_points.txt`` file or override this property.
(self)
| 487 | |
| 488 | @property |
| 489 | def entry_points(self) -> EntryPoints: |
| 490 | """ |
| 491 | Return EntryPoints for this distribution. |
| 492 | |
| 493 | Custom providers may provide the ``entry_points.txt`` file |
| 494 | or override this property. |
| 495 | """ |
| 496 | return EntryPoints._from_text_for(self.read_text('entry_points.txt'), self) |
| 497 | |
| 498 | @property |
| 499 | def files(self) -> Optional[List[PackagePath]]: |
nothing calls this directly
no test coverage detected