Files
Buffteks-Website/venv/lib/python3.12/site-packages/setuptools-stubs/command/dist_info.pyi
2025-05-08 21:10:14 -05:00

13 lines
381 B
Python

from typing import ClassVar
from .._distutils.cmd import Command
class dist_info(Command):
description: str
user_options: ClassVar[list[tuple[str, str | None, str]]]
boolean_options: ClassVar[list[str]]
negative_opt: ClassVar[dict[str, str]]
def initialize_options(self) -> None: ...
def finalize_options(self) -> None: ...
def run(self) -> None: ...