The PyPA recommended tool for installing Python packages.
91
A Python utility that builds wheel distributions from source packages and manages the build process.
@generates
def build_wheel(source: str, output_dir: str) -> dict:
"""
Build a wheel from a source package.
Args:
source: Path to local source directory or package name from PyPI
output_dir: Directory where the built wheel should be saved
Returns:
dict: Build result with keys 'success' (bool), 'wheel_path' (str or None),
and 'error' (str or None)
"""
pass
def build_wheels(sources: list[str], output_dir: str) -> list[dict]:
"""
Build wheels from multiple source packages.
Args:
sources: List of paths to local source directories or package names from PyPI
output_dir: Directory where the built wheels should be saved
Returns:
list[dict]: List of build results for each source
"""
passProvides wheel building support for Python packages.
Install with Tessl CLI
npx tessl i tessl/pypi-pipevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10