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.
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
utils::person
middle
a character string with the collapsed middle name(s). Deprecated, see Details.
email
a character string (or vector) giving an e-mail address (each), or a list thereof.
comment
a character string (or vector) providing comments, or a list thereof.
first
a character string giving the first name. Deprecated, see Details.
last
a character string giving the last name. Deprecated, see Details.
- role
a character vector specifying the role(s) of the person (see Details), or a list thereof.