Return EntryPoints for this distribution. Custom providers may provide the ``entry_points.txt`` file or override this property.
(self)
| 572 | |
| 573 | @property |
| 574 | def entry_points(self) -> EntryPoints: |
| 575 | """ |
| 576 | Return EntryPoints for this distribution. |
| 577 | |
| 578 | Custom providers may provide the ``entry_points.txt`` file |
| 579 | or override this property. |
| 580 | """ |
| 581 | return EntryPoints._from_text_for(self.read_text('entry_points.txt'), self) |
| 582 | |
| 583 | @property |
| 584 | def files(self) -> list[PackagePath] | None: |
nothing calls this directly
no test coverage detected