-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathREADME.Rmd
42 lines (36 loc) · 1.49 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
title: pkgdepends
output:
github_document:
always_allow_html: yes
---
```{r, include = FALSE}
knitr::opts_chunk$set(
fig.path = file.path(getwd(), "man/figures/README"),
cache.path = file.path(getwd(), "man/_cache/"),
out.width = "100%",
cache = TRUE,
asciicast_theme = if (Sys.getenv("IN_PKGDOWN") == "true") "pkgdown" else "readme"
)
asciicast::init_knitr_engine(
startup = quote({
library(pkgdepends)
set.seed(1) }),
echo = TRUE,
echo_input = FALSE,
interactive = FALSE
)
```
<!-- README.md is generated from README.Rmd. Please edit that file -->
> Package Dependency Resolution, Downloads and Installation
<!-- badges: start -->
[![lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![R build status](https://github.com/r-lib/pkgdepends/workflows/R-CMD-check/badge.svg)](https://github.com/r-lib/pkgdepends/actions)
[![Codecov test coverage](https://codecov.io/gh/r-lib/pkgdepends/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-lib/pkgdepends?branch=main)
[![R-CMD-check](https://github.com/r-lib/pkgdepends/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/r-lib/pkgdepends/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
pkgdepends is a toolkit for package dependencies, downloads and
installations, to be used in other packages. If you are looking for a
package manager, see [pak](https://github.com/r-lib/pak).
```{r child = "tools/doc/README-body.Rmd"}
```