-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplugins.json
More file actions
99 lines (99 loc) · 3.13 KB
/
plugins.json
File metadata and controls
99 lines (99 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[
{
"name": "CITATION.cff Harvester",
"description": "Harvest plugin for CITATION.cff files.",
"author": "Hermes team",
"steps": ["harvest"],
"harvested_files": ["CITATION.cff"],
"builtin": true
},
{
"name": "codemeta.json Harvester",
"description": "Harvest plugin for codemeta.json files.",
"author": "Hermes team",
"steps": ["harvest"],
"harvested_files": ["codemeta.json"],
"builtin": true
},
{
"name": "'file_exists' Harvester",
"description": "Harvest plugin that figures out whether certain frequently used files (README, LICENSE, ...) exist. Custom search patterns for other types of files can be configured.",
"author": "Hermes team",
"steps": ["harvest"],
"harvested_files": [
"readme",
"license"
],
"builtin": true
},
{
"name": "hermes-plugin-git",
"description": "Harvest plugin for Git repository metadata.",
"author": "Hermes team",
"steps": ["harvest"],
"repository_url": "https://github.com/softwarepub/hermes-plugin-git"
},
{
"name": "hermes-plugin-python",
"description": "Harvest plugin for .toml files.",
"author": "Hermes team",
"steps": ["harvest"],
"harvested_files": ["pyproject.toml"],
"repository_url": "https://github.com/softwarepub/hermes-plugin-python",
"pypi_url": "https://pypi.org/project/hermes-plugin-python/"
},
{
"name": "Merge",
"description": "Process plugin for basic merging of metadata.",
"author": "Hermes team",
"steps": ["process"],
"builtin": true
},
{
"name": "Curate",
"description": "Curation plugin for no-check acceptance of the metadata.",
"author": "Hermes team",
"steps": ["curate"],
"builtin": true
},
{
"name": "hermes-plugin-software-card",
"description": "HERMES curation plugin using the Software CaRD framework.",
"author": "Software CaRD team",
"steps": ["curate"],
"repository_url": "https://github.com/softwarepub/hermes-plugin-software-card"
},
{
"name": "Invenio Deposit",
"description": "Deposit plugin for Invenio-based platforms.",
"author": "Hermes team",
"steps": ["deposit"],
"builtin": true
},
{
"name": "Invenio RDM Deposit",
"description": "Deposit plugin for Invenio RDM-based platforms such as Zenodo.",
"author": "Hermes team",
"steps": ["deposit"],
"builtin": true
},
{
"name": "Rodare Deposit",
"description": "Deposit plugin for the Rodare publication platform at HZDR.",
"author": "Hermes team",
"steps": ["deposit"],
"builtin": true
},
{
"name": "Invenio Postprocess",
"author": "Hermes team",
"steps": ["postprocess"],
"builtin": true
},
{
"name": "Invenio RDM Postprocess",
"author": "Hermes team",
"steps": ["postprocess"],
"builtin": true
}
]