From 1576244937f5b61d83e12e537b9a0c0b558ff5ca Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Mon, 2 Jan 2023 06:24:58 +0000 Subject: [PATCH] [Plugin Development] Fix links back to yt-dlp-sample-plugins --- Plugin Development.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Plugin Development.md b/Plugin Development.md index e66b77d..c43f31c 100644 --- a/Plugin Development.md +++ b/Plugin Development.md @@ -24,15 +24,15 @@ A template plugin package repository is available at [yt-dlp/yt-dlp-sample-plugi --- ## Configuring your plugin package -1. Modify [setup.cfg](setup.cfg) with your plugin's name and version. It is recommended to bump the version whenever you make changes or a new release. -2. Update the installation instructions in [README.md](README.md) to point to this repository. +1. Modify [setup.cfg](https://github.com/yt-dlp/yt-dlp-sample-plugins/blob/master/setup.cfg) with your plugin's name and version. It is recommended to bump the version whenever you make changes or a new release. +2. Update the installation instructions on [README.md](https://github.com/yt-dlp/yt-dlp-sample-plugins/blob/master/README.md) to point to this repository. 3. Add `yt-dlp-plugins` to the repository tags for discoverability. 4. Be sure to remove any of the sample extractors/post-processors. ## Run and debug configuration 1. Set your IDE's run configuration to point to the `yt_dlp` Python module. -2. Add your project's root directory containing `yt_dlp_plugins` to `PYTHONPATH` environment variable (this may not be necessary with some IDE run configurations) -3. The `yt_dlp_plugins` folder should be automatically picked up by yt-dlp (run with `-v` to check) +2. Add your project's root directory containing `yt_dlp_plugins` to `PYTHONPATH` environment variable (this may not be necessary with some IDE run configurations). +3. The `yt_dlp_plugins` folder should be automatically picked up by yt-dlp (run with `-v` to check). ## Importing extractors from other plugins @@ -58,4 +58,4 @@ packages = [{ include = "yt_dlp_plugins" }] ... ``` -See the [Poetry documentation](https://python-poetry.org/docs/pyproject/#packages) for more details. \ No newline at end of file +See the [Poetry documentation](https://python-poetry.org/docs/pyproject/#packages) for more details.