Skip to content

Commit f5bbd83

Browse files
add citation and postbuild
1 parent 96fb7bd commit f5bbd83

File tree

2 files changed

+109
-0
lines changed

2 files changed

+109
-0
lines changed

CITATION.cff

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# This CITATION.cff file was generated with cffinit.
2+
# Visit https://bit.ly/cffinit to generate yours today!
3+
4+
cff-version: 1.2.0
5+
title: ValueEval'24 Hierocles of Alexandria
6+
message: >-
7+
If you use this software, please cite it using the
8+
metadata from this file.
9+
type: software
10+
authors:
11+
- given-names: Sotirios
12+
family-names: Legkas
13+
affiliation: >-
14+
nstitute of Informatics & Telecommunications, National
15+
Centre for Scientific Research (N.C.S.R.)
16+
'Demokritos', Aghia Paraskevi, Attica, Greece
17+
email: sotirislegkas@iit.demokritos.gr
18+
orcid: 'https://orcid.org/0009-0000-9468-5650'
19+
- given-names: Christina
20+
family-names: Christodoulou
21+
email: ch.christodoulou@iit.demokritos.gr
22+
affiliation: >-
23+
Institute of Informatics & Telecommunications,
24+
National Centre for Scientific Research (N.C.S.R.)
25+
'Demokritos', Aghia Paraskevi, Attica, Greece
26+
orcid: 'https://orcid.org/0009-0009-5616-3937'
27+
- given-names: Matthaios
28+
family-names: Zidianakis
29+
email: mzidianakis@iit.demokritos.gr
30+
affiliation: >-
31+
Institute of Informatics & Telecommunications,
32+
National Centre for Scientific Research (N.C.S.R.)
33+
'Demokritos', Aghia Paraskevi, Attica, Greece
34+
orcid: 'https://orcid.org/0009-0009-5102-8103'
35+
- given-names: 'Dimitrios '
36+
family-names: Koutrintzes
37+
email: dkoutrintzes@iit.demokritos.gr
38+
affiliation: >-
39+
Institute of Informatics & Telecommunications,
40+
National Centre for Scientific Research (N.C.S.R.)
41+
'Demokritos', Aghia Paraskevi, Attica, Greece
42+
orcid: 'https://orcid.org/0009-0003-7401-6347'
43+
- given-names: Maria
44+
family-names: Dagioglou
45+
email: mdagiogl@iit.demokritos.gr
46+
affiliation: >-
47+
Institute of Informatics & Telecommunications,
48+
National Centre for Scientific Research (N.C.S.R.)
49+
'Demokritos', Aghia Paraskevi, Attica, Greece
50+
orcid: 'https://orcid.org/0000-0002-3357-2844'
51+
- given-names: Georgios
52+
family-names: Petasis
53+
email: petasis@iit.demokritos.gr
54+
affiliation: >-
55+
Institute of Informatics & Telecommunications,
56+
National Centre for Scientific Research (N.C.S.R.)
57+
'Demokritos', Aghia Paraskevi, Attica, Greece
58+
orcid: 'https://orcid.org/0000-0003-3157-1597'
59+
- given-names: 'Nicolas '
60+
family-names: Handke
61+
email: nicolas@bioinf.uni-leipzig.de
62+
affiliation: 'Leipzig University, Leipzig, Germany'
63+
orcid: 'https://orcid.org/0000-0003-1349-4671'
64+
- given-names: Johannes
65+
family-names: Kiesel
66+
email: Johannes.Kiesel@gesis.org
67+
orcid: 'https://orcid.org/0000-0002-1617-6508'
68+
affiliation: >-
69+
GESIS - Leibniz Institute for the Social Sciences,
70+
Cologne, Germany
71+
identifiers:
72+
- type: url
73+
value: 'https://touche.webis.de/publications.html#legkas_2024'
74+
description: Publication
75+
repository-code: >-
76+
https://github.com/touche-webis-de/valueeval24-hierocles-of-alexandria
77+
license: MIT

postBuild

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env -S bash -v
2+
3+
# determine which version of Quarto to install
4+
QUARTO_VERSION=1.7.29
5+
6+
echo
7+
echo Installing Quarto $QUARTO_VERSION
8+
echo
9+
10+
# download and install the deb file
11+
curl -LO https://github.com/quarto-dev/quarto-cli/releases/download/v$QUARTO_VERSION/quarto-$QUARTO_VERSION-linux-amd64.deb
12+
dpkg -x quarto-$QUARTO_VERSION-linux-amd64.deb .quarto
13+
rm -rf quarto-$QUARTO_VERSION-linux-amd64.deb
14+
15+
# get quarto in the path
16+
mkdir -p ~/.local/bin
17+
ln -s ~/.quarto/opt/quarto/bin/quarto ~/.local/bin/quarto
18+
19+
# create the proper pandoc symlink to enable visual editor in Quarto extension
20+
ln -s ~/.quarto/opt/quarto/bin/tools/x86_64/pandoc ~/.quarto/opt/quarto/bin/tools/pandoc
21+
22+
23+
echo
24+
echo Installed Quarto
25+
echo
26+
27+
# install required python packages
28+
python3 -m pip install jupyterlab-quarto
29+
30+
echo
31+
echo Completed
32+
echo

0 commit comments

Comments
 (0)