diff --git a/outpostcli/cli.py b/outpostcli/cli.py index 275d9ec..0af71c2 100644 --- a/outpostcli/cli.py +++ b/outpostcli/cli.py @@ -5,8 +5,6 @@ from outpostkit import Client, Endpoint from outpostkit.exceptions import OutpostError, OutpostHTTPException -from outpostcli.lfs.commands import lfs - from .config_utils import ( purge_config_file, remove_details_from_config_file, @@ -15,6 +13,7 @@ from .constants import cli_version from .endpoints import endpoints from .exceptions import NotLoggedInError +from .lfs.commands import lfs from .utils import add_options, api_token_opt, check_token, click_group, entity_opt CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"]) diff --git a/outpostcli/constants.py b/outpostcli/constants.py index df69669..04c84fb 100644 --- a/outpostcli/constants.py +++ b/outpostcli/constants.py @@ -1,2 +1,2 @@ -cli_version = "0.0.18" +cli_version = "0.0.19" CLI_BINARY_NAME = "outpostcli" diff --git a/pyproject.toml b/pyproject.toml index a498583..2fd9c3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "outpostcli" -version = "0.0.18" +version = "0.0.19" description = "CLI for Outpost" readme = "README.md" license = { file = "LICENSE" } @@ -30,7 +30,7 @@ repository = "https://github.com/outposthq/cli" testpaths = "tests/" [tool.setuptools] -packages = ["outpostcli"] +packages = ["outpostcli", "outpostkit.lfs"] [project.scripts] outpostcli = "outpostcli.cli:outpost"