1# Stubs for distutils.dist
2from distutils.cmd import Command
3
4from typing import Any, Mapping, Optional, Dict, Tuple, Iterable, Text
5
6
7class Distribution:
8    def __init__(self, attrs: Optional[Mapping[str, Any]] = ...) -> None: ...
9    def get_option_dict(self, command: str) -> Dict[str, Tuple[str, Text]]: ...
10    def parse_config_files(self, filenames: Optional[Iterable[Text]] = ...) -> None: ...
11    def get_command_obj(self, command: str, create: bool = ...) -> Optional[Command]: ...
12