massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / distutils / command / upload.pyi
1 from typing import Any, ClassVar
2
3 from ..config import PyPIRCCommand
4
5 class upload(PyPIRCCommand):
6     description: ClassVar[str]
7     username: str
8     password: str
9     show_response: int
10     sign: bool
11     identity: Any
12     def initialize_options(self) -> None: ...
13     repository: Any
14     realm: Any
15     def finalize_options(self) -> None: ...
16     def run(self) -> None: ...
17     def upload_file(self, command: str, pyversion: str, filename: str) -> None: ...