File size: 460 Bytes
932bc69 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/usr/bin/env python3
"""Backward-compatibility shim — use ``speculators prepare-data`` instead."""
import warnings
import typer
from speculators.cli.prepare_data import prepare_data
warnings.warn(
"scripts/prepare_data.py is deprecated and will be removed in v0.9.0. "
"Use 'speculators prepare-data' instead.",
DeprecationWarning,
stacklevel=1,
)
app = typer.Typer()
app.command()(prepare_data)
if __name__ == "__main__":
app()
|