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)
| 1012 | |
| 1013 | |
| 1014 | def files(distribution_name: str) -> Optional[List[PackagePath]]: |
| 1015 | """Return a list of files for the named package. |
| 1016 | |
| 1017 | :param distribution_name: The name of the distribution package to query. |
| 1018 | :return: List of files composing the distribution. |
| 1019 | """ |
| 1020 | return distribution(distribution_name).files |
| 1021 | |
| 1022 | |
| 1023 | def requires(distribution_name: str) -> Optional[List[str]]: |