Skip to content

Commit 898990a

Browse files
committed
Add Citation.cff and update pyproject.toml
1 parent 4196229 commit 898990a

2 files changed

Lines changed: 59 additions & 5 deletions

File tree

Citation.cff

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
cff-version: 1.2.0
2+
title: "survey-dashboard"
3+
message: "If you use this software, please cite it as below."
4+
version: 1.0.0
5+
type: software
6+
license: MIT
7+
date-released: '2022-09-25'
8+
repository-code: >-
9+
https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard
10+
url: >-
11+
https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard
12+
repository: >-
13+
https://github.com/Materials-Data-Science-and-Informatics/survey_dashboard
14+
keywords:
15+
- dashboard
16+
- 'data visualization'
17+
- 'survey data'
18+
- 'categorical data'
19+
- 'interactive visualization'
20+
- bokeh
21+
- panel
22+
authors:
23+
- family-names: Bröder
24+
given-names: Jens
25+
orcid: 'https://orcid.org/0000-0001-7939-226X'
26+
email: j.broeder@fz-juelich.de
27+
affiliation: Forschungszentrum Jülich GmbH (FZJ)
28+
- family-names: Gerlich
29+
given-names: Silke
30+
orcid: 'https://orcid.org/0000-0003-3043-5657'
31+
email: s.gerlich@fz-juelich.de
32+
affiliation: Forschungszentrum Jülich GmbH (FZJ)
33+
- family-names: Hofmann
34+
given-names: Volker
35+
orcid: 'https://orcid.org/0000-0002-5149-603X'
36+
email: v.hofmann@fz-juelich.de
37+
affiliation: Forschungszentrum Jülich GmbH (FZJ)
38+
abstract: |
39+
A Dashboard displaying survey data in an
40+
interactive way and allow for interactive exploration.
41+
Written for the data publication of the Helmholtz Metadata collaboration
42+
survey 2021: https://doi.org/10.7802/2433.
43+
The code could be adapted to visualize other categorical data provided
44+
in a table.
45+
46+
Acknowledgements:
47+
This project was developed at the Institute for Materials Data Science and Informatics
48+
(IAS-9) of the Jülich Research Center and funded by the Helmholtz Metadata Collaboration
49+
(HMC), an incubator-platform of the Helmholtz Association within the framework of the
50+
Information and Data Science strategic initiative.

pyproject.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[project]
22
name = "survey-dashboard"
3-
description = "A Dashboard displaying survey data interatively."
4-
authors = [{name = "Jens Broeder", email = "j.broeder@fz-juelich.de"}]
3+
description = "A Dashboard displaying survey data in an interative way and allow for interactive exploration."
4+
authors = [{name = "Jens Broeder", email = "j.broeder@fz-juelich.de"},
5+
{name = "Silke Gerlich", email = "s.gerlich@fz-juelich.de"},
6+
{name = "Volker Hofmann", email = "v.hofmann@fz-juelich.de"}]
57
readme = "README.md"
68
license = {file = "LICENSE.txt"}
79
classifiers = [
@@ -25,7 +27,8 @@ classifiers = [
2527
"Topic :: Scientific/Engineering :: Visualization",
2628

2729
]
28-
keywords = ["dashboard", "data visualization", "survey data", "categorical data", "interactive visualization", "bokeh", "panel"]
30+
keywords = ["dashboard", "data visualization", "survey data", "categorical data",
31+
"interactive visualization", "bokeh", "panel"]
2932

3033

3134
[tool.poetry]
@@ -39,6 +42,8 @@ license = "MIT"
3942
python = "^3.8"
4043
pandas = "^1.4.1"
4144
bokeh = "^2.4.3"
45+
wordcloud = "^1.8.2.2"
46+
panel = "^0.13.1"
4247

4348
[tool.poetry.dev-dependencies]
4449
pre-commit = "^2.17.0"
@@ -74,5 +79,4 @@ warn_unused_ignores = true
7479
warn_redundant_casts = true
7580
no_warn_no_return = true
7681
show_traceback = true
77-
plugins = []
78-
82+
plugins = []

0 commit comments

Comments
 (0)