mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
18 lines
523 B
Python
18 lines
523 B
Python
from abc import abstractmethod
|
|
from distutils.cmd import Command
|
|
from typing import ClassVar, List, Optional, Tuple
|
|
|
|
DEFAULT_PYPIRC: str
|
|
|
|
class PyPIRCCommand(Command):
|
|
DEFAULT_REPOSITORY: ClassVar[str]
|
|
DEFAULT_REALM: ClassVar[str]
|
|
repository: None
|
|
realm: None
|
|
user_options: ClassVar[List[Tuple[str, Optional[str], str]]]
|
|
boolean_options: ClassVar[List[str]]
|
|
def initialize_options(self) -> None: ...
|
|
def finalize_options(self) -> None: ...
|
|
@abstractmethod
|
|
def run(self) -> None: ...
|