We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e90488 commit eb9a0d8Copy full SHA for eb9a0d8
README-PLUGINS.md
@@ -11,9 +11,11 @@ available right now:
11
There are several pieces to be aware of for the plugin to work correctly:
12
1. The setup.cfg(or setup.py) file must have the entry_points definition.
13
For example:
14
-> [options.entry_points]
15
-nbgitpuller =
16
- dropbox=nbgitpuller_downloader_dropbox.dropbox_downloader
+
+ ```toml
+ [options.entry_points]
17
+ nbgitpuller = dropbox=nbgitpuller_downloader_dropbox.dropbox_downloader
18
+ ```
19
20
2. The file referenced for use by nbgitpuller in the plug-in (the above example is looking for the
21
file, dropbox_downloader) must implement the function handle_files(query_line_args) and be decorated with `@hookimpl`.
0 commit comments