Skip to content

Commit a400805

Browse files
committed
docs: add ORCID to DESCRIPTION, add Kirill's ORCID + desc::desc_normalize()
1 parent 200584a commit a400805

File tree

2 files changed

+40
-32
lines changed

2 files changed

+40
-32
lines changed

.zenodo.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"orcid": "0000-0002-1451-338X"
1818
},
1919
{
20-
"name": "Müller, Kirill"
20+
"name": "Müller, Kirill",
21+
"orcid": "0000-0002-1416-3412"
2122
},
2223
{
2324
"name": "Horvát, Szabolcs",

DESCRIPTION

+38-31
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,34 @@
11
Package: igraph
2-
Version: 1.4.99.9002
32
Title: Network Analysis and Visualization
3+
Version: 1.4.99.9002
4+
Authors@R: c(
5+
person("Gábor", "Csárdi", , "[email protected]", role = "aut",
6+
comment = c(ORCID = "0000-0001-7098-9676")),
7+
person("Tamás", "Nepusz", , "[email protected]", role = "aut",
8+
comment = c(ORCID = "0000-0002-1451-338X", "See also AUTHORS file.")),
9+
person("Vincent", "Traag", role = "aut",
10+
comment = c(ORCID = "0000-0003-3170-3879")),
11+
person("Szabolcs", "Horvát", , "[email protected]", role = "aut",
12+
comment = c(ORCID = "0000-0002-3100-523X")),
13+
person("Fabio", "Zanini", , "[email protected]", role = "aut",
14+
comment = c(ORCID = "0000-0001-7097-8539")),
15+
person("Daniel", "Noom", role = "aut"),
16+
person("Kirill", "Müller", , "[email protected]", role = c("aut", "cre"),
17+
comment = c(ORCID = "0000-0002-1416-3412")),
18+
person("Maëlle", "Salmon", role = "ctb"),
19+
person("Chan Zuckerberg Initiative", role = "fnd")
20+
)
421
Description: Routines for simple graphs and network analysis. It can
5-
handle large graphs very well and provides functions for generating random
6-
and regular graphs, graph visualization, centrality methods and much more.
22+
handle large graphs very well and provides functions for generating
23+
random and regular graphs, graph visualization, centrality methods and
24+
much more.
25+
License: GPL (>= 2)
26+
URL: https://r.igraph.org/, https://igraph.org/,
27+
https://igraph.discourse.group/
28+
BugReports: https://github.com/igraph/rigraph/issues
729
Depends:
8-
R (>= 3.0.2),
9-
methods
30+
methods,
31+
R (>= 3.0.2)
1032
Imports:
1133
graphics,
1234
grDevices,
@@ -22,42 +44,27 @@ Suggests:
2244
digest,
2345
graph,
2446
igraphdata,
47+
knitr,
2548
rgl,
49+
rmarkdown,
2650
scales,
2751
stats4,
2852
tcltk,
2953
testthat,
30-
withr,
3154
vdiffr,
32-
knitr,
33-
rmarkdown
55+
withr
3456
LinkingTo:
3557
cpp11 (>= 0.2.0)
36-
License: GPL (>= 2)
37-
URL: https://r.igraph.org/, https://igraph.org/, https://igraph.discourse.group/
38-
SystemRequirements:
39-
gmp (optional),
40-
libxml2 (optional),
41-
glpk (>= 4.57, optional)
42-
BugReports: https://github.com/igraph/rigraph/issues
43-
Encoding: UTF-8
58+
VignetteBuilder:
59+
knitr
4460
Config/Needs/build: roxygen2, devtools, irlba, pkgconfig
4561
Config/Needs/coverage: covr
4662
Config/testthat/edition: 3
4763
Config/testthat/parallel: true
48-
Config/testthat/start-first: vs-es, scan, vs-operators, weakref, watts.strogatz.game
49-
RoxygenNote: 7.2.3
64+
Config/testthat/start-first: vs-es, scan, vs-operators, weakref,
65+
watts.strogatz.game
66+
Encoding: UTF-8
5067
Roxygen: list(markdown = TRUE)
51-
Authors@R: c(
52-
person("Gábor", "Csárdi", , "[email protected]", role = "aut"),
53-
person("Tamás", "Nepusz", , "[email protected]", role = "aut",
54-
comment = "See also AUTHORS file."),
55-
person("Vincent", "Traag", role = "aut"),
56-
person("Szabolcs", "Horvát", , "[email protected]", role = "aut"),
57-
person("Fabio", "Zanini", , "[email protected]", role = "aut"),
58-
person("Daniel", "Noom", role = "aut"),
59-
person("Kirill", "Müller", role = c("aut", "cre"), email = "[email protected]"),
60-
person("Maëlle", "Salmon", role = "ctb"),
61-
person("Chan Zuckerberg Initiative", role = "fnd")
62-
)
63-
VignetteBuilder: knitr
68+
RoxygenNote: 7.2.3
69+
SystemRequirements:gmp (optional), libxml2 (optional), glpk (>= 4.57,
70+
optional)

0 commit comments

Comments
 (0)