from typing import Any, Tuple from ..cmd import Command HAS_USER_SITE: bool SCHEME_KEYS: Tuple[str, ...] INSTALL_SCHEMES: dict[str, dict[Any, Any]] class install(Command): description: str user_options: Any boolean_options: Any negative_opt: Any prefix: str | None exec_prefix: Any home: str | None user: bool install_base: Any install_platbase: Any root: str | None install_purelib: Any install_platlib: Any install_headers: Any install_lib: str | None install_scripts: Any install_data: Any install_userbase: Any install_usersite: Any compile: Any optimize: Any extra_path: Any install_path_file: int force: int skip_build: int warn_dir: int build_base: Any build_lib: Any record: Any def initialize_options(self) -> None: ... config_vars: Any install_libbase: Any def finalize_options(self) -> None: ... def dump_dirs(self, msg) -> None: ... def finalize_unix(self) -> None: ... def finalize_other(self) -> None: ... def select_scheme(self, name) -> None: ... def expand_basedirs(self) -> None: ... def expand_dirs(self) -> None: ... def convert_paths(self, *names) -> None: ... path_file: Any extra_dirs: Any def handle_extra_path(self) -> None: ... def change_roots(self, *names) -> None: ... def create_home_path(self) -> None: ... def run(self) -> None: ... def create_path_file(self) -> None: ... def get_outputs(self): ... def get_inputs(self): ... def has_lib(self): ... def has_headers(self): ... def has_scripts(self): ... def has_data(self): ... sub_commands: Any