-
Notifications
You must be signed in to change notification settings - Fork 5
/
codemeta-about.tmpl
81 lines (63 loc) · 1.55 KB
/
codemeta-about.tmpl
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
---
cff-version: 1.2.0
message: "If you use this software, please cite it as below."
type: software
${if(name)}title: "${name}"${endif}
${if(description)}abstract: "${description}"${endif}
${if(author)}authors:
${for(author)}
- family-names: ${it.familyName}
given-names: ${it.givenName}
orcid: "${it.at__id}"
${endfor}${endif}
${if(codeRepository)}repository-code: "${codeRepository}"${endif}
${if(version)}version: ${version}${endif}
${if(license)}license-url: "${license}"${endif}
${if(keywords)}keywords: [ ${for(keywords)}"${it}"${sep}, ${endfor} ]${endif}
${if(datePublished)}date-released: ${datePublished}${endif}
---
About this software
===================
## ${name} ${version}
${if(author)}
### Authors
${for(author)}
- ${it.givenName} ${it.familyName}
${endfor}
${endif}
${if(contributor)}
### Contributors
${for(contributor)}
- ${it.givenName} ${it.familyName}
${endfor}
${endif}
${if(maintainer)}
### Maintainers
${for(maintainer)}
- ${it.givenName} ${it.familyName}
${endfor}
${endif}
${if(description)}
${description}
${endif}
${if(license)}- License: <${license}>${endif}
${if(codeRepository)}- GitHub: <${codeRepository}>${endif}
${if(issueTracker)}- Issues: <${issueTracker}>${endif}
${if(programmingLanguage)}
### Programming languages
${for(programmingLanguage)}
- ${programmingLanguage}
${endfor}
${endif}
${if(operatingSystem)}
### Operating Systems
${for(operatingSystem)}
- ${operatingSystem}
${endfor}
${endif}
${if(softwareRequirements)}
### Software Requiremets
${for(softwareRequirements)}
- ${softwareRequirements}
${endfor}
$endif$