Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-lib/pkgdepends
R Package Dependency Resolution
https://github.com/r-lib/pkgdepends
r
Last synced: 4 days ago
JSON representation
R Package Dependency Resolution
- Host: GitHub
- URL: https://github.com/r-lib/pkgdepends
- Owner: r-lib
- License: other
- Created: 2017-09-09T09:17:38.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-11-22T13:23:27.000Z (20 days ago)
- Last Synced: 2024-12-01T00:03:30.521Z (11 days ago)
- Topics: r
- Language: C
- Homepage: https://r-lib.github.io/pkgdepends/
- Size: 15.2 MB
- Stars: 102
- Watchers: 5
- Forks: 30
- Open Issues: 58
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - r-lib/pkgdepends - R Package Dependency Resolution (C)
README
---
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
)
```> Package Dependency Resolution, Downloads and Installation
[![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)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"}
```