mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
This was mostly generated by running stubgen. Existing annotations were kept, but converted to use PEP 604 and PEP 585.
18 lines
497 B
Python
18 lines
497 B
Python
from abc import abstractmethod
|
|
from distutils.cmd import Command
|
|
from typing import ClassVar
|
|
|
|
DEFAULT_PYPIRC: str
|
|
|
|
class PyPIRCCommand(Command):
|
|
DEFAULT_REPOSITORY: ClassVar[str]
|
|
DEFAULT_REALM: ClassVar[str]
|
|
repository: None
|
|
realm: None
|
|
user_options: ClassVar[list[tuple[str, str | None, str]]]
|
|
boolean_options: ClassVar[list[str]]
|
|
def initialize_options(self) -> None: ...
|
|
def finalize_options(self) -> None: ...
|
|
@abstractmethod
|
|
def run(self) -> None: ...
|