Get the ``Distribution`` instance for the named package. :param distribution_name: The name of the distribution package as a string. :return: A ``Distribution`` instance (or subclass thereof).
(distribution_name: str)
| 1065 | |
| 1066 | |
| 1067 | def distribution(distribution_name: str) -> Distribution: |
| 1068 | """Get the ``Distribution`` instance for the named package. |
| 1069 | |
| 1070 | :param distribution_name: The name of the distribution package as a string. |
| 1071 | :return: A ``Distribution`` instance (or subclass thereof). |
| 1072 | """ |
| 1073 | return Distribution.from_name(distribution_name) |
| 1074 | |
| 1075 | |
| 1076 | def distributions(**kwargs) -> Iterable[Distribution]: |
searching dependent graphs…