add_license_file | R Documentation |
This function wraps usethis
'
licenses
functions, which are
designed for R-packages. This function makes them applicable to other use
cases (e.g., WORCS projects, FAIR theory).
add_license_file(path = ".", license = "ccby", ...)
path |
Character, indicating the directory in which to create the license file. Default: '.'. |
license |
Character, indicating which license function to call.
The |
... |
Additional arguments passed to |
No return value. This function is called for its side effects.
tmpdr <- file.path(tempdir(), "license")
dir.create(tmpdr)
add_license_file(path = tmpdr,
license = "proprietary",
copyright_holder = "test")
unlink(tmpdr, recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.