Skip to content

Commit 98d0a83

Browse files
authored
refactor: ♻️ revise CITATION.cff.jinja to use Jinja variables (#81)
# Description Add Jinja variables as well as TODO items. This PR needs a quick review.
1 parent 6993e45 commit 98d0a83

File tree

1 file changed

+22
-27
lines changed

1 file changed

+22
-27
lines changed

template/CITATION.cff.jinja

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
1-
title: "Template Data Package: An opinionated setup for making FAIR and structured data using Seedcase Python packages"
2-
abstract: "A template for making a Git repository that follows strongly opinionated practices for building and managing a data package. These practices include using Seedcase Python packages, such as Seedcase Sprout, and the Frictionless Data Package standard."
1+
# TODO: Add title of data package.
2+
title: ""
3+
# TODO: Add abstract of data package.
4+
abstract: ""
35
authors:
4-
- family-names: Johnston
5-
given-names: Luke William
6-
orcid: "https://orcid.org/0000-0003-4169-2616"
7-
affiliation: "Steno Diabetes Center Aarhus"
8-
- family-names: Brødbæk
9-
given-names: Signe Kirk
10-
affiliation: "Steno Diabetes Center Aarhus"
11-
- family-names: Beicher
12-
given-names: Kristiane
13-
affiliation: "Steno Diabetes Center Aarhus"
14-
- family-names: Vago
15-
given-names: Marton
16-
affiliation: "Steno Diabetes Center Aarhus"
6+
- family-names: {{ author_family_name }}
7+
given-names: {{ author_given_name }}
8+
# TODO: Add ORCID and affiliation for the author.
9+
orcid: ""
10+
affiliation: ""
11+
# TODO: Add more authors as needed.
12+
# - family-names: ""
13+
# given-names: ""
14+
# orcid: ""
15+
# affiliation: ""
1716
cff-version: 1.2.0
1817
# doi:
1918
keywords:
20-
- "template repository"
21-
- "template project"
22-
- "template data package"
23-
- "data engineering"
24-
- "data infrastructure"
25-
- "data package"
26-
- "frictionless data"
27-
- "FAIR data"
28-
license: MIT
29-
message: "If you use this software, please cite it using these metadata."
30-
repository-code: "https://github.com/seedcase-project/template-data-package"
31-
url: "https://template-data-package.seedcase-project.org"
19+
# TODO: Add keywords relevant to the project.
20+
- ""
21+
# TODO: Add a data license for the data package.
22+
license: ""
23+
message: "If you use this data package, please cite it using these metadata."
24+
repository-code: "https://github.com/{{ package_github }}"
25+
# TODO: Add a URL for any website for the data package.
26+
# url: ""

0 commit comments

Comments
 (0)