-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathDESCRIPTION
77 lines (77 loc) · 2.82 KB
/
DESCRIPTION
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
Package: workflowr
Type: Package
Title: A Framework for Reproducible and Collaborative Data Science
Version: 1.7.1.1
Authors@R: c(
person("John", "Blischak", role = c("aut", "cre"),
email = "jdblischak@gmail.com",
comment = c(ORCID = "0000-0003-2634-9879")),
person("Peter", "Carbonetto", role = c("aut"),
comment = c(ORCID = "0000-0003-1144-6780")),
person("Matthew", "Stephens", role = c("aut"),
comment = c(ORCID = "0000-0001-5397-9257")),
person("Luke", "Zappia", role = c("ctb"),
comment = "Instructions for hosting with GitLab"),
person("Pierre", "Formont", role = c("ctb"),
comment = "Support for hosting with Shiny Server"),
person("Tim", "Trice", role = c("ctb"),
comment = "Instructions for sharing common code"),
person("Jiaxiang", "Li", role = c("ctb"),
comment = "Function wflow_toc() to create table of contents"),
person("Michael J.", "Kane", role = c("ctb"),
email = "michael.kane@yale.edu",
comment = c(ORCID = "0000-0003-1899-6662",
"Option suppress_report")),
person("Anh", "Tran", role = c("ctb"),
comment = "Updated RStudio Project Template"),
person("Sydney", "Purdue", role = c("ctb"),
comment = "Improved wflow_start() error handling"),
person("Giorgio", "Comai", role = c("ctb"),
comment = "Added argument only_published to wflow_toc()"),
person("Zaynaib", "Giwa", role = c("ctb"),
comment = "Multiple enhancements"),
person("Xiongbing", "Jin", role = c("ctb"),
comment = "Fixed bug in versions table for figures"),
person("Yihui", "Xie", role = c("ctb"),
comment = c(ORCID = "0000-0003-0645-5666",
"Design advice; maintenance"))
)
Description: Provides a workflow for your analysis projects by combining
literate programming ('knitr' and 'rmarkdown') and version control
('Git', via 'git2r') to generate a website containing time-stamped,
versioned, and documented results.
URL: https://workflowr.github.io/workflowr/, https://github.com/workflowr/workflowr
BugReports: https://github.com/workflowr/workflowr/issues
Depends:
R (>= 3.3.0)
License: MIT + file LICENSE
Encoding: UTF-8
Imports:
callr (>= 3.7.0),
fs (>= 1.2.7),
getPass,
git2r (>= 0.26.0),
glue,
httpuv (>= 1.2.2),
httr,
knitr (>= 1.29),
rmarkdown (>= 1.18),
rprojroot (>= 1.2),
rstudioapi (>= 0.6),
stringr (>= 1.3.0),
tools,
utils,
whisker (>= 0.3-2),
yaml
RoxygenNote: 7.2.3
Suggests:
clipr (>= 0.7.0),
miniUI (>= 0.1.1),
reticulate (>= 1.15),
sessioninfo,
shiny (>= 0.14),
testthat (>= 2.0.0),
withr (>= 2.0.0)
VignetteBuilder: knitr
SystemRequirements: pandoc (>= 1.14) - https://pandoc.org
Language: en-US