diff --git a/docs/deploying.md b/docs/deploying.md index d1635107..a82cb678 100644 --- a/docs/deploying.md +++ b/docs/deploying.md @@ -22,12 +22,12 @@ environment management. To install the TEA CLI using git over SSH: ``` -pipx install git+ssh://git@github.com/asfadmin/thin-egress-app.git#subdirectory=tea-cli +pipx install git+ssh://git@github.com/asfadmin/thin-egress-app.git#subdirectory=src/tea-cli ``` Or, to install the TEA CLI using git over HTTPS: ``` -pipx install git+https://github.com/asfadmin/thin-egress-app.git#subdirectory=tea-cli +pipx install git+https://github.com/asfadmin/thin-egress-app.git#subdirectory=src/tea-cli ``` ### Using the TEA CLI diff --git a/tea-cli/pyproject.toml b/src/tea-cli/pyproject.toml similarity index 100% rename from tea-cli/pyproject.toml rename to src/tea-cli/pyproject.toml diff --git a/tea-cli/tea_cli/__init__.py b/src/tea-cli/tea_cli/__init__.py similarity index 100% rename from tea-cli/tea_cli/__init__.py rename to src/tea-cli/tea_cli/__init__.py diff --git a/tea-cli/tea_cli/__main__.py b/src/tea-cli/tea_cli/__main__.py similarity index 100% rename from tea-cli/tea_cli/__main__.py rename to src/tea-cli/tea_cli/__main__.py diff --git a/tea-cli/tea_cli/commands/__init__.py b/src/tea-cli/tea_cli/commands/__init__.py similarity index 100% rename from tea-cli/tea_cli/commands/__init__.py rename to src/tea-cli/tea_cli/commands/__init__.py diff --git a/tea-cli/tea_cli/commands/list_versions.py b/src/tea-cli/tea_cli/commands/list_versions.py similarity index 100% rename from tea-cli/tea_cli/commands/list_versions.py rename to src/tea-cli/tea_cli/commands/list_versions.py diff --git a/tea-cli/tea_cli/commands/quick_deploy.py b/src/tea-cli/tea_cli/commands/quick_deploy.py similarity index 100% rename from tea-cli/tea_cli/commands/quick_deploy.py rename to src/tea-cli/tea_cli/commands/quick_deploy.py diff --git a/tea-cli/tea_cli/deploy.py b/src/tea-cli/tea_cli/deploy.py similarity index 100% rename from tea-cli/tea_cli/deploy.py rename to src/tea-cli/tea_cli/deploy.py diff --git a/tea-cli/tea_cli/main.py b/src/tea-cli/tea_cli/main.py similarity index 100% rename from tea-cli/tea_cli/main.py rename to src/tea-cli/tea_cli/main.py diff --git a/tea-cli/tea_cli/selector.py b/src/tea-cli/tea_cli/selector.py similarity index 100% rename from tea-cli/tea_cli/selector.py rename to src/tea-cli/tea_cli/selector.py diff --git a/tea-cli/tests/__init__.py b/src/tea-cli/tests/__init__.py similarity index 100% rename from tea-cli/tests/__init__.py rename to src/tea-cli/tests/__init__.py diff --git a/tea-cli/tests/conftest.py b/src/tea-cli/tests/conftest.py similarity index 100% rename from tea-cli/tests/conftest.py rename to src/tea-cli/tests/conftest.py diff --git a/tea-cli/tests/test_main.py b/src/tea-cli/tests/test_main.py similarity index 100% rename from tea-cli/tests/test_main.py rename to src/tea-cli/tests/test_main.py