From 064f8ca4cc6db916d7605f863d4f2d24347442a3 Mon Sep 17 00:00:00 2001 From: Andrey Lebedev Date: Mon, 5 Feb 2024 22:51:18 +0200 Subject: [PATCH] Correct README --- README.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 8abd011..b969616 100644 --- a/README.rst +++ b/README.rst @@ -42,13 +42,13 @@ Your own plugin To create your own plugin, follow these steps: -* Edit ``setup.py`` and provide relevant metadata for your plugin. Pay - close attention to ``entry_points`` parameter to ``setup`` function: it - lists plugins you are registering within ofxstatement. Give meaningful - name to the plugin and provide plugin class name +* Edit ``pyproject.toml`` and provide relevant metadata for your plugin. Pay close + attention to ``project.entry-points`` section: it lists plugins you are registering + within ofxstatement. Give meaningful name to the plugin and reference your plugin + class name. * Replace contents of ``README.rst`` with description of your plugin -* Rename ``ofxstatement_sample`` to match plugin package name - you have provided in ``entry_points`` parameter. +* Rename the project name (``ofxstatement_sample``) to match plugin package name you + have provided in ``entry_points`` parameter. * Open the ``plugin.py`` and rename ``SamplePlugin`` and ``SampleParser`` classes to match your plugin class name. * Now, draw the rest of the owl (c).