From 644a1f0e1160538feaf514a83df26a95fb8d3e97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathieu=20Besan=C3=A7on?= Date: Tue, 14 May 2019 16:15:43 +0200 Subject: [PATCH] begin citation --- src/template.jl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/template.jl b/src/template.jl index 3e5c0a6..24d4435 100644 --- a/src/template.jl +++ b/src/template.jl @@ -24,6 +24,7 @@ create a template, you can use [`interactive_template`](@ref) instead. * `julia_version::VersionNumber=$VERSION`: Minimum allowed Julia version. * `ssh::Bool=false`: Whether or not to use SSH for the git remote. If `false` HTTPS will be used. * `manifest::Bool=false`: Whether or not to commit the `Manifest.toml`. +* `citation::Bool=false`: Whether or not to create a `CITATION.bib` file at the top-level. * `plugins::Vector{<:Plugin}=Plugin[]`: A list of `Plugin`s that the package will include. """ struct Template @@ -35,6 +36,7 @@ struct Template julia_version::VersionNumber ssh::Bool manifest::Bool + citation::Bool plugins::Dict{DataType, <:Plugin} function Template(; @@ -46,6 +48,7 @@ struct Template julia_version::VersionNumber=VERSION, ssh::Bool=false, manifest::Bool=false, + citation::Bool=false, plugins::Vector{<:Plugin}=Plugin[], git::Bool=true, )