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: ...
|