mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-15 05:56:36 +03:00
20 lines
581 B
Python
20 lines
581 B
Python
from typing import Any, Optional
|
|
|
|
class build_meta:
|
|
@staticmethod
|
|
def build_wheel(
|
|
wheel_directory: str,
|
|
config_settings: Optional[dict[Any, Any]] = None,
|
|
metadata_directory: Optional[str] = None,
|
|
) -> str: ...
|
|
@staticmethod
|
|
def build_sdist(
|
|
sdist_directory: str, config_settings: Optional[dict[Any, Any]] = None
|
|
) -> str: ...
|
|
@staticmethod
|
|
def build_editable(
|
|
wheel_directory: str,
|
|
config_settings: Optional[dict[Any, Any]] = None,
|
|
metadata_directory: Optional[str] = None,
|
|
) -> str: ...
|