A plugin for poetry that allows you to execute scripts defined in your tasks.py using pyinvoke. Inspired by poetry-exec-plugin.
Project description
poetry-pyinvoke-plugin
A plugin for poetry that allows you to invoke commands in your tasks.py
file delegating to pyinvoke
.
Heavily inspired by the work from keattang
on the poetry-exec-plugin project.
Installation
Installation requires poetry 1.6.0+. To install this plugin run:
pip install poetry-pyinvoke-plugin
# OR
poetry self add poetry-pyinvoke-plugin
For other methods of installing plugins see the poetry documentation.
Quickstart
See Configuration for details on how to setup a tasks.py
file.
List all tasks:
poetry inv -- --list
Run a task:
poetry invoke lint
# OR
poetry inv lint
User Guide
Configuration
tasks.py
from invoke import task
@task
def lint(c):
c.run("flake8")
c.run("black --check .")
Command Line Usage
Quickstart
Then:
poetry inv -- --list
Example Output:
Invoke: invoke --list
Available tasks:
build Build wheel.
format Autoformat code for code style.
greeting Example task that takes an argument for testing purposes.
lint Linting and style checking.
test Run test suite.
Run a task:
poetry invoke lint
# OR
poetry inv lint
You can use either poetry invoke
or poetry inv
. The rest of this documentation will use poetry inv
.
Detailed Command Usage
List All Tasks
This uses --
to break the arguments to poetry
and lets the remainder get passed to invoke
.
Command:
poetry inv -- --list
Example Output:
Invoke: invoke --list
Available tasks:
build Build wheel.
format Autoformat code for code style.
greeting Example task that takes an argument for testing purposes.
lint Linting and style checking.
test Run test suite.
Run a Task
Command:
poetry inv lint
Example Output:
Invoke: invoke lint
All done! ✨ 🍰 ✨
3 files would be left unchanged.
Skipped 3 files
Success: no issues found in 2 source files
Tasks with Arguments
Singular Positional Argument
Command:
poetry inv greeting Loki
Example Output:
Invoke: invoke greeting Loki
Hello Loki, from Sylvie
Command:
poetry inv greeting -- Loki
Example Output:
Invoke: invoke greeting Loki
Hello Loki, from Sylvie
Named Arguments
Command:
poetry inv greeting -- --name Loki
Example Output:
Invoke: invoke greeting --name Loki
Hello Loki, from Sylvie
Command:
poetry inv greeting -- -n Loki
Example Output:
Invoke: invoke greeting -n Loki
Hello Loki, from Sylvie
Multiple Named Arguments
Command:
poetry inv greeting -- --name Loki --other Thor
Example Output:
Invoke: invoke greeting --name Loki --other Thor
Hello Loki, from Thor
Command:
poetry inv greeting -- -n Loki -o Thor
Example Output:
Invoke: invoke greeting -n Loki -o Thor
Hello Loki, from Thor
Task Help
This uses --
to break the arguments to poetry
and lets the remainder get passed to invoke
. It also uses --help
positionally before the task
command to get help for it.
Command:
poetry inv -- --help greeting
Example Output:
Invoke: invoke --help greeting
Usage: inv[oke] [--core-opts] greeting [--options] [other tasks here ...]
Docstring:
Example task that takes an argument for testing purposes.
Options:
-n STRING, --name=STRING
-o STRING, --other=STRING
Plugin Help
Command:
poetry inv --help
Example Output:
Description:
Delegate out to pyinvoke tasks specified in your tasks.py file
Usage:
inv [options] [--] <cmd> [<arguments>...]
Arguments:
cmd The command to run from your tasks.py.
arguments Additional arguments to append to the command.
Invoke Help
This uses --
to break the arguments to poetry
and lets the remainder get passed to invoke
.
Command:
poetry inv -- --help
Example Output:
Invoke: invoke --help
Usage: inv[oke] [--core-opts] task1 [--task1-opts] ... taskN [--taskN-opts]
Publishing
To publish a new version create a release from main
(after pull request).
Contributing
At all times, you have the power to fork this project, make changes as you see fit and then:
pip install https://github.com/user/repository/archive/branch.zip
Stackoverflow: pip install from github branch
That way you can run from your own custom fork in the interim or even in-house your work and simply use this project as a starting point. That is totally ok.
However if you would like to contribute your changes back, then open a Pull Request "across forks".
Once your changes are merged and published you can revert to the canonical version of pip install
ing this package.
If you're not sure how to make changes or if you should sink the time and effort, then open an Issue instead and we can have a chat to triage the issue.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file poetry_pyinvoke_plugin-0.5.0.tar.gz
.
File metadata
- Download URL: poetry_pyinvoke_plugin-0.5.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.0 Linux/6.2.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1b473ce5f35fe9278cbd5c9841ab1ea963e5fa3b2bfb0a7edbfcf3066c85e00 |
|
MD5 | 1633d387be1007d7815ecb91d670ee83 |
|
BLAKE2b-256 | 1f6e2ef3d6a6b3d74d9ac86d35f936791e4fb2731f4483e299e2107deb2008db |
File details
Details for the file poetry_pyinvoke_plugin-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: poetry_pyinvoke_plugin-0.5.0-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.0 Linux/6.2.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06284fc347aaf9b15e0a6f22c74e4f23df779da0457321f822172d47ef062fc8 |
|
MD5 | dc210fde80cb4f77642c844fd5bcb798 |
|
BLAKE2b-256 | c3c28b958a4560c88ec1831752946b27b5323c835318cd17dbcacea82a42d39e |