Last active
April 5, 2020 21:17
-
-
Save seasmith/47bbc73896a2a5fe2bbbc4d0408cca4f to your computer and use it in GitHub Desktop.
Setup an R package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options( | |
usethis.description = list( | |
`Authors@R` = 'person("Luke", "Smith", email = "[email protected]", role = c("aut", "cre"))', | |
License = "GPL-3" | |
) | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbuild::check_build_tools() | |
devtools::use_description() | |
devtools::create() | |
usethis::use_roxygen_md() | |
usethis::use_package_doc() | |
usethis::use_git() | |
usethis::git_vaccinate() | |
usethis::use_build_ignore() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment