use_author {usethis} | R Documentation |
Add an author to the Authors@R
field in DESCRIPTION
Description
use_author()
adds a person to the Authors@R
field of the DESCRIPTION
file, creating that field if necessary. It will not modify, e.g., the role(s)
or email of an existing author (judged using their "Given Family" name). For
that we recommend editing DESCRIPTION directly. Or, for programmatic use,
consider calling the more specialized functions available in the desc
package directly.
use_author()
also surfaces two other situations you might want to address:
Explicit use of the fields
Author
orMaintainer
. We recommend switching to the more modernAuthors@R
field instead, because it offers richer metadata for various downstream uses. (Note thatAuthors@R
is eventually processed to createAuthor
andMaintainer
fields, but only when thetar.gz
is built from package source.)Presence of the fake author placed by
create_package()
anduse_description()
. This happens when usethis has to create a DESCRIPTION file and the user hasn't given any author information via thefields
argument or the global option"usethis.description"
. The placeholder looks something likeFirst Last <first.last@example.com> [aut, cre] (YOUR-ORCID-ID)
anduse_author()
offers to remove it in interactive sessions.
Usage
use_author(given = NULL, family = NULL, ..., role = "ctb")
Arguments
given |
a character vector with the given names, or a list thereof. |
family |
a character string with the family name, or a list thereof. |
... |
Arguments passed on to
|
role |
a character vector specifying the role(s) of the person (see Details), or a list thereof. |
Examples
## Not run:
use_author(
given = "Lucy",
family = "van Pelt",
role = c("aut", "cre"),
email = "lucy@example.com",
comment = c(ORCID = "LUCY-ORCID-ID")
)
use_author("Charlie", "Brown")
## End(Not run)