-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodemeta.json
More file actions
49 lines (49 loc) · 1.26 KB
/
codemeta.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"name": "{{REPO_NAME}}",
"description": "{{REPO_DESCRIPTION}}",
"version": "0.1.0",
"dateCreated": "{{RELEASE_DATE}}",
"dateModified": "{{RELEASE_DATE}}",
"license": "https://spdx.org/licenses/MIT",
"codeRepository": "https://github.com/{{REPO_ORG}}/{{REPO_NAME}}",
"identifier": "{{ZENODO_DOI}}",
"@id": "{{ZENODO_DOI}}",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Python",
"version": "3.12"
},
"operatingSystem": ["Linux", "macOS"],
"author": [
{
"@type": "Person",
"givenName": "{{AUTHOR_GIVEN}}",
"familyName": "{{AUTHOR_FAMILY}}",
"@id": "{{AUTHOR_ORCID}}",
"affiliation": {
"@type": "Organization",
"name": "{{AUTHOR_AFFILIATION}}"
}
}
],
"keywords": [
"replication",
"reproducibility",
"FORRT",
"nanopublication",
"Science-Live"
],
"referencePublication": {
"@type": "ScholarlyArticle",
"name": "{{PAPER_TITLE}}",
"datePublished": "{{PAPER_YEAR}}",
"@id": "https://doi.org/{{PAPER_DOI}}"
},
"isPartOf": {
"@type": "Organization",
"name": "Science Live",
"url": "https://platform.sciencelive4all.org"
}
}