Restore spacy.cli.project API

This commit is contained in:
Adriane Boyd 2023-10-10 08:27:44 +02:00
parent 65e7bd54f5
commit 462a6ade21
10 changed files with 15 additions and 0 deletions

View File

@ -22,6 +22,13 @@ from .init_pipeline import init_pipeline_cli # noqa: F401
from .package import package # noqa: F401
from .pretrain import pretrain # noqa: F401
from .profile import profile # noqa: F401
from .project.assets import project_assets # noqa: F401
from .project.clone import project_clone # noqa: F401
from .project.document import project_document # noqa: F401
from .project.dvc import project_update_dvc # noqa: F401
from .project.pull import project_pull # noqa: F401
from .project.push import project_push # noqa: F401
from .project.run import project_run # noqa: F401
from .train import train_cli # noqa: F401
from .validate import validate # noqa: F401

View File

View File

@ -0,0 +1 @@
from weasel.cli.assets import *

View File

@ -0,0 +1 @@
from weasel.cli.clone import *

View File

@ -0,0 +1 @@
from weasel.cli.document import *

1
spacy/cli/project/dvc.py Normal file
View File

@ -0,0 +1 @@
from weasel.cli.dvc import *

View File

@ -0,0 +1 @@
from weasel.cli.pull import *

View File

@ -0,0 +1 @@
from weasel.cli.push import *

View File

@ -0,0 +1 @@
from weasel.cli.remote_storage import *

1
spacy/cli/project/run.py Normal file
View File

@ -0,0 +1 @@
from weasel.cli.run import *