forked from CU-DBMI/template-uv-python-research-software
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCITATION.cff.jinja
More file actions
22 lines (22 loc) · 722 Bytes
/
Copy pathCITATION.cff.jinja
File metadata and controls
22 lines (22 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
---
cff-version: 1.2.0
title: {{ project_name }}
message: >-
If you use this software, please cite it using the
metadata from the CITATION.cff file.
type: software
authors:
{% set author_name_split = author_name.split(' ') %}
{% set author_given_name = author_name_split[0] %}
{% set author_last_name = author_name_split[1] if author_name_split | length > 1 else '' %}
- given-names: {{ author_given_name }}
family-names: {{ author_last_name }}
orcid: "{{ author_orcid }}"
repository-code: "{{ github_url }}"
abstract: >-
{{ project_description }}
keywords:
- python
license: BSD-3-Clause