2
0
mirror of https://github.com/LonamiWebs/Telethon synced 2025-08-25 03:18:16 +00:00
telethon/typings/setuptools.pyi

20 lines
581 B
Python
Raw Permalink Normal View History

2024-03-17 13:06:03 +01:00
from typing import Any, Optional
2024-03-16 19:05:58 +01:00
class build_meta:
@staticmethod
def build_wheel(
wheel_directory: str,
2024-03-17 13:06:03 +01:00
config_settings: Optional[dict[Any, Any]] = None,
2024-03-16 19:05:58 +01:00
metadata_directory: Optional[str] = None,
) -> str: ...
@staticmethod
def build_sdist(
2024-03-17 13:06:03 +01:00
sdist_directory: str, config_settings: Optional[dict[Any, Any]] = None
2024-03-16 19:05:58 +01:00
) -> str: ...
@staticmethod
def build_editable(
wheel_directory: str,
2024-03-17 13:06:03 +01:00
config_settings: Optional[dict[Any, Any]] = None,
2024-03-16 19:05:58 +01:00
metadata_directory: Optional[str] = None,
) -> str: ...