A Poetry plugin that allows executing scripts defined in pyproject.toml under the [tool.poetry.scripts] table, similar to npm run or pipenv run. Current version: 1.0.1, supports Poetry 2.x. Release cadence is sporadic.
pip install poetry-exec-pluginNo compatibility data collected yet for this library.
Define scripts in pyproject.toml and run them via `poetry exec <script-name>`.
For Poetry 1.x: pip install 'poetry-exec-plugin<1.0.0' (e.g., 0.3.6).
Use the correct TOML key: [tool.poetry.scripts].
Update to dict form: greet = { callable = "...", help = "...", args = "..." }.Do not import the plugin. Install it and run `poetry exec` as a CLI command.
Run `poetry self add poetry-exec-plugin` (Poetry 2.x) or `pip install poetry-exec-plugin` in the same environment as poetry.
Use `poetry self add poetry-exec-plugin` (Poetry 2.x) or reinstall with `pip install poetry-exec-plugin` in the Poetry environment.