From 6fca89de31c89462896d9920ee73a3ae0189b82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20L=C3=A1t?= Date: Tue, 23 Apr 2024 16:24:50 +0100 Subject: [PATCH] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index baf3e1b..59c5cff 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Delfino is a simple wrapper around [Click commands](https://click.palletsproject Delfino looks for any [`click.Command`](https://click.palletsprojects.com/en/8.0.x/api/#click.Command) sub-class in the following locations: -- `commands` folder in the root of the project (next to the `pyproject.toml` file). This location is useful for commands that don't need to be replicated in multiple locations/projects. To change the default location, use the `tool.delfino.local_command_folders` config option. It allows specifying more than one folder. +- `commands` folder in the root of the project (next to the `pyproject.toml` file) OR folders specified in the [config file](#configuration) under `tool.delfino.local_command_folders`. This location is useful for commands that don't need to be replicated in multiple locations/projects. - python module import path (``) specified by `entry_point` of [a plugin](#minimal-plugin): ```toml [tool.poetry.plugins] # Optional super table @@ -107,7 +107,6 @@ Delfino looks for any [`click.Command`](https://click.palletsprojects.com/en/8.0 [tool.poetry.plugins."delfino.plugin"] "delfino-" = "" ``` -- Folder specified in the [config file](#configuration) under `tool.delfino.local_commands_directory`. Any files starting with an underscore, except for `__init__.py`, will be ignored.