mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
25 lines
541 B
Python
25 lines
541 B
Python
import typer
|
|
from typer.main import get_command
|
|
|
|
|
|
COMMAND = "python -m spacy"
|
|
NAME = "spacy"
|
|
HELP = """spaCy Command-line Interface
|
|
|
|
DOCS: https://spacy.io/api/cli
|
|
"""
|
|
|
|
|
|
app = typer.Typer(name=NAME, help=HELP)
|
|
|
|
# Wrappers for Typer's annotations. Initially created to set defaults and to
|
|
# keep the names short, but not needed at the moment.
|
|
Arg = typer.Argument
|
|
Opt = typer.Option
|
|
|
|
|
|
def setup_cli() -> None:
|
|
# Ensure that the help messages always display the correct prompt
|
|
command = get_command(app)
|
|
command(prog_name=COMMAND)
|