├── .github └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── src └── poetry_plugin_shell │ ├── __init__.py │ ├── command.py │ ├── plugins.py │ └── shell.py └── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── test_helpers.py ├── test_shell_command.py └── types.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/poetry_plugin_shell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/src/poetry_plugin_shell/__init__.py -------------------------------------------------------------------------------- /src/poetry_plugin_shell/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/src/poetry_plugin_shell/command.py -------------------------------------------------------------------------------- /src/poetry_plugin_shell/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/src/poetry_plugin_shell/plugins.py -------------------------------------------------------------------------------- /src/poetry_plugin_shell/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/src/poetry_plugin_shell/shell.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_shell_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/tests/test_shell_command.py -------------------------------------------------------------------------------- /tests/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-poetry/poetry-plugin-shell/HEAD/tests/types.py --------------------------------------------------------------------------------