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

Commit 788041b

Browse files
committed
Expand & enhance codemeta.json
This changes `maintainer` to be a person object, and adds fields `readme`, `programmingLanguage`, and `dateCreated`.
1 parent fcb6f91 commit 788041b

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

codemeta-TEMPLATE.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
33
"@type": "SoftwareSourceCode",
4-
"description": "%DESCRIPTION%",
54
"name": "%REPO_NAME%",
5+
"description": "%DESCRIPTION%",
66
"codeRepository": "https://github.com/caltechlibrary/%REPO_NAME%",
77
"issueTracker": "https://github.com/caltechlibrary/%REPO_NAME%/issues",
8+
"readme": "https://github.com/caltechlibrary/%REPO_NAME%/blob/main/README.md",
89
"license": "https://github.com/caltechlibrary/%REPO_NAME%/blob/main/LICENSE",
910
"version": "0.0.0",
1011
"author": [
@@ -16,13 +17,22 @@
1617
"email": "%AUTHOR_EMAIL%",
1718
"@id": "https://orcid.org/YOUR-ORCID"
1819
}],
20+
"dateCreated": "%CREATION_DATE%",
21+
"programmingLanguage": {
22+
"@type": "ComputerLanguage",
23+
"name": "Python",
24+
"url": "https://python.org"
25+
},
1926
"developmentStatus": "active",
2027
"downloadUrl": "https://github.com/caltechlibrary/%REPO_NAME%/archive/main.zip",
2128
"keywords": [
2229
"software",
2330
"science"
2431
],
25-
"maintainer": "https://orcid.org/YOUR-ORCID",
32+
"maintainer": {
33+
"@type": "Person",
34+
"@id": "https://orcid.org/YOUR-ORCID"
35+
},
2636
"funder": {
2737
"@id": "https://doi.org/10.13039/100006961",
2838
"@type": "Organization",

0 commit comments

Comments
 (0)