Skip to content

Instantly share code, notes, and snippets.

@seasmith
Last active April 5, 2020 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seasmith/47bbc73896a2a5fe2bbbc4d0408cca4f to your computer and use it in GitHub Desktop.
Save seasmith/47bbc73896a2a5fe2bbbc4d0408cca4f to your computer and use it in GitHub Desktop.
Setup an R package
options(
usethis.description = list(
`Authors@R` = 'person("Luke", "Smith", email = "lukedansmi@sbcglobal.net", role = c("aut", "cre"))',
License = "GPL-3"
)
)
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