2023-01-04 15:07:07 +00:00
|
|
|
import sys
|
|
|
|
from pathlib import Path
|
|
|
|
|
2023-01-14 13:59:42 +00:00
|
|
|
import typer
|
2023-01-04 15:07:07 +00:00
|
|
|
|
|
|
|
from pyodide_build._py_compile import _py_compile_wheel
|
|
|
|
|
|
|
|
|
|
|
|
def main(
|
|
|
|
wheel_path: Path = typer.Argument(..., help="Path to the input wheel"),
|
|
|
|
) -> None:
|
|
|
|
"""Compile .py files to .pyc in a wheel"""
|
|
|
|
if wheel_path.suffix != ".whl":
|
|
|
|
typer.echo(f"Error: only .whl files are supported, got {wheel_path.name}")
|
|
|
|
sys.exit(1)
|
|
|
|
_py_compile_wheel(wheel_path, verbose=False)
|