Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 915d47a

Browse files
author
John Andersen
committed
github: Issue template for new plugin
Signed-off-by: John Andersen <[email protected]>
1 parent 69fa076 commit 915d47a

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
name: New Plugin
3+
about: I've created a new plugin for DFFML
4+
title: 'plugin: new: '
5+
labels: documentation
6+
assignees: ''
7+
8+
---
9+
10+
I've created a new plugin for DFFML!
11+
12+
The package name on PyPi is .... / GitHub repo is ....
13+
14+
It provides Sources / Models / Operations / Data Flow
15+
16+
The following are it's `entry_points`
17+
18+
```python
19+
# (copy paste yours here, example is from dffml/setup.py)
20+
entry_points={
21+
'dffml.source': [
22+
'csv = dffml.source.csv:CSVSource',
23+
'json = dffml.source.json:JSONSource',
24+
'memory = dffml.source.memory:MemorySource',
25+
],
26+
}
27+
```
28+
29+
Here is what each one does (in rST, leave the \`\`\` so it can be copy pasted)
30+
31+
`*Community*` means that you are a member of the DFFML community that is
32+
contributing a plugin. If there is a plugin maintained within the DFFML git repo
33+
that needs to be added to the documentation it will be `*Core*`.
34+
35+
```
36+
CSV
37+
---
38+
39+
*Community*
40+
41+
Loads and saves Repos from CSV files.
42+
43+
**Args**
44+
45+
- filename: String
46+
47+
- Path to CSV file
48+
49+
- readonly: Boolean
50+
51+
- True if the file should not be written back to
52+
```

0 commit comments

Comments
 (0)