Return a list of files for the named package. :param distribution_name: The name of the distribution package to query. :return: List of files composing the distribution.
(distribution_name: str)
| 1126 | |
| 1127 | |
| 1128 | def files(distribution_name: str) -> list[PackagePath] | None: |
| 1129 | """Return a list of files for the named package. |
| 1130 | |
| 1131 | :param distribution_name: The name of the distribution package to query. |
| 1132 | :return: List of files composing the distribution. |
| 1133 | """ |
| 1134 | return distribution(distribution_name).files |
| 1135 | |
| 1136 | |
| 1137 | def requires(distribution_name: str) -> list[str] | None: |
searching dependent graphs…