Skip to content

Commit 4c7800d

Browse files
committed
add codemeta
1 parent 36185e5 commit 4c7800d

2 files changed

Lines changed: 167 additions & 17 deletions

File tree

.Rbuildignore

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
^.*\.Rproj$
2-
^\.Rproj\.user$
3-
^LICENSE\.md$
4-
^\.github$
5-
^README\.Rmd$
6-
^PLAYGROUND.R$
7-
^man-roxygen$
8-
^BENCHMARKS.R$
9-
^cran-comments\.md$
10-
^CRAN-SUBMISSION$
11-
^_pkgdown\.yml$
12-
^docs$
13-
^pkgdown$
14-
^vignettes/\.quarto$
15-
^vignettes/articles/\.quarto$
16-
^vignettes/articles/*_files$
17-
^vignettes/articles$
1+
^.*\.Rproj$
2+
^\.Rproj\.user$
3+
^LICENSE\.md$
4+
^\.github$
5+
^README\.Rmd$
6+
^PLAYGROUND.R$
7+
^man-roxygen$
8+
^BENCHMARKS.R$
9+
^cran-comments\.md$
10+
^CRAN-SUBMISSION$
11+
^_pkgdown\.yml$
12+
^docs$
13+
^pkgdown$
14+
^vignettes/\.quarto$
15+
^vignettes/articles/\.quarto$
16+
^vignettes/articles/*_files$
17+
^vignettes/articles$
18+
^codemeta\.json$

codemeta.json

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
{
2+
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
3+
"@type": "SoftwareSourceCode",
4+
"identifier": "tidyhydro",
5+
"description": "Provides tidy tools for comparing simulated and observed hydrological time series. Includes compatibility with the 'yardstick' package for model performance evaluation using commonly used metrics such as the Nash–Sutcliffe Efficiency (NSE), Kling–Gupta Efficiency (KGE), percent bias (pBIAS) and etc.",
6+
"name": "tidyhydro: Tidy Metrics for Assessing Hydrological Models Performance",
7+
"relatedLink": "https://atsyplenkov.github.io/tidyhydro/",
8+
"codeRepository": "https://github.com/atsyplenkov/tidyhydro",
9+
"issueTracker": "https://github.com/atsyplenkov/tidyhydro/issues",
10+
"license": "https://spdx.org/licenses/MIT",
11+
"version": "0.1.1",
12+
"programmingLanguage": {
13+
"@type": "ComputerLanguage",
14+
"name": "R",
15+
"url": "https://r-project.org"
16+
},
17+
"runtimePlatform": "R version 4.5.1 Patched (2025-06-14 r88315)",
18+
"author": [
19+
{
20+
"@type": "Person",
21+
"givenName": "Anatoly",
22+
"familyName": "Tsyplenkov",
23+
"email": "atsyplenkov@fastmail.com",
24+
"@id": "https://orcid.org/0000-0003-4144-8402"
25+
}
26+
],
27+
"copyrightHolder": [
28+
{
29+
"@type": "Person",
30+
"givenName": "Anatoly",
31+
"familyName": "Tsyplenkov",
32+
"email": "atsyplenkov@fastmail.com",
33+
"@id": "https://orcid.org/0000-0003-4144-8402"
34+
}
35+
],
36+
"maintainer": [
37+
{
38+
"@type": "Person",
39+
"givenName": "Anatoly",
40+
"familyName": "Tsyplenkov",
41+
"email": "atsyplenkov@fastmail.com",
42+
"@id": "https://orcid.org/0000-0003-4144-8402"
43+
}
44+
],
45+
"softwareSuggestions": [
46+
{
47+
"@type": "SoftwareApplication",
48+
"identifier": "hydroGOF",
49+
"name": "hydroGOF",
50+
"provider": {
51+
"@id": "https://cran.r-project.org",
52+
"@type": "Organization",
53+
"name": "Comprehensive R Archive Network (CRAN)",
54+
"url": "https://cran.r-project.org"
55+
},
56+
"sameAs": "https://CRAN.R-project.org/package=hydroGOF"
57+
},
58+
{
59+
"@type": "SoftwareApplication",
60+
"identifier": "testthat",
61+
"name": "testthat",
62+
"version": ">= 3.0.0",
63+
"provider": {
64+
"@id": "https://cran.r-project.org",
65+
"@type": "Organization",
66+
"name": "Comprehensive R Archive Network (CRAN)",
67+
"url": "https://cran.r-project.org"
68+
},
69+
"sameAs": "https://CRAN.R-project.org/package=testthat"
70+
},
71+
{
72+
"@type": "SoftwareApplication",
73+
"identifier": "quickcheck",
74+
"name": "quickcheck",
75+
"version": ">= 0.1.3",
76+
"provider": {
77+
"@id": "https://cran.r-project.org",
78+
"@type": "Organization",
79+
"name": "Comprehensive R Archive Network (CRAN)",
80+
"url": "https://cran.r-project.org"
81+
},
82+
"sameAs": "https://CRAN.R-project.org/package=quickcheck"
83+
},
84+
{
85+
"@type": "SoftwareApplication",
86+
"identifier": "quarto",
87+
"name": "quarto",
88+
"provider": {
89+
"@id": "https://cran.r-project.org",
90+
"@type": "Organization",
91+
"name": "Comprehensive R Archive Network (CRAN)",
92+
"url": "https://cran.r-project.org"
93+
},
94+
"sameAs": "https://CRAN.R-project.org/package=quarto"
95+
}
96+
],
97+
"softwareRequirements": {
98+
"1": {
99+
"@type": "SoftwareApplication",
100+
"identifier": "R",
101+
"name": "R",
102+
"version": ">= 4.1.0"
103+
},
104+
"2": {
105+
"@type": "SoftwareApplication",
106+
"identifier": "Rcpp",
107+
"name": "Rcpp",
108+
"version": ">= 1.0.12",
109+
"provider": {
110+
"@id": "https://cran.r-project.org",
111+
"@type": "Organization",
112+
"name": "Comprehensive R Archive Network (CRAN)",
113+
"url": "https://cran.r-project.org"
114+
},
115+
"sameAs": "https://CRAN.R-project.org/package=Rcpp"
116+
},
117+
"3": {
118+
"@type": "SoftwareApplication",
119+
"identifier": "rlang",
120+
"name": "rlang",
121+
"version": ">= 1.1.0",
122+
"provider": {
123+
"@id": "https://cran.r-project.org",
124+
"@type": "Organization",
125+
"name": "Comprehensive R Archive Network (CRAN)",
126+
"url": "https://cran.r-project.org"
127+
},
128+
"sameAs": "https://CRAN.R-project.org/package=rlang"
129+
},
130+
"4": {
131+
"@type": "SoftwareApplication",
132+
"identifier": "yardstick",
133+
"name": "yardstick",
134+
"version": ">= 1.3.1",
135+
"provider": {
136+
"@id": "https://cran.r-project.org",
137+
"@type": "Organization",
138+
"name": "Comprehensive R Archive Network (CRAN)",
139+
"url": "https://cran.r-project.org"
140+
},
141+
"sameAs": "https://CRAN.R-project.org/package=yardstick"
142+
},
143+
"SystemRequirements": null
144+
},
145+
"fileSize": "102.604KB",
146+
"releaseNotes": "https://github.com/atsyplenkov/tidyhydro/blob/master/NEWS.md",
147+
"readme": "https://github.com/atsyplenkov/tidyhydro/blob/master/README.md",
148+
"keywords": ["r", "r-package", "rstats"]
149+
}

0 commit comments

Comments
 (0)