Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
title: "Check Data Package: Ensure the correctness and compliance of your Data Package"
# TODO: Add abstract of Python package.
abstract: ""
abstract: |
Check your Data Package's metadata against the Data Package standard to ensure that
it's compliant with the standard. See https://check-datapackage.seedcase-project.org
for more information.
authors:
- family-names: Johnston
given-names: Luke William
Expand All @@ -18,9 +20,11 @@ authors:
given-names: Marton
affiliation: "Steno Diabetes Center Aarhus"
orcid: "https://orcid.org/0009-0007-4628-655X"
- family-names: Ostblom
given-names: Joel
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's your ORCID @joelostblom and do you want to include an affiliation?

cff-version: 1.2.0
# doi: ""
# date-released: ""
doi: "10.5281/zenodo.17733655"
date-released: "2025-11-27"
keywords:
- "data package"
- "data package checks"
Expand All @@ -31,9 +35,7 @@ keywords:
- "metadata"
- "metadata checks"
- "metadata verification"
- "verification"
- "data engineering"
- "metadata checks"
license: MIT
message: "If you use this Python package, please cite it using these metadata."
repository-code: "https://github.com/seedcase-project/check-datapackage"
Expand Down
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,26 @@ This project is licensed under the [MIT License](LICENSE.md).
## Changelog

For a list of changes, see our [changelog](CHANGELOG.md) page.

## Citing

This project is part of the [Seedcase
Project](https://seedcase-project.org), which is a collaborative effort
to create a framework for data management and analysis in research. If
you use this project in your work, please cite it as follows:

Johnston L.W., Brødbæk S.K., Beicher K., Vago M., Ostblom J. (2025).
Check Data Package: Ensure the correctness and compliance of your Data
Package DOI: 10.5281/zenodo.17733655 URL:
https://check-datapackage.seedcase-project.org

Or as a BibTeX entry:

@misc{YourReferenceHere,
author = {Johnston, Luke William and Brødbæk, Signe Kirk and Beicher, Kristiane and Vago, Marton and Ostblom, Joel},
doi = {10.5281/zenodo.17733655},
month = {11},
title = {Check Data Package: Ensure the correctness and compliance of your Data Package},
url = {https://check-datapackage.seedcase-project.org},
year = {2025}
}
21 changes: 21 additions & 0 deletions README.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
format: gfm
metadata-files:
- _metadata.yml
execute:
echo: false
jupyter: python3
---

<!-- NOTE: This README.md is auto-generated from README.qmd. Edit that file. -->
Expand Down Expand Up @@ -119,3 +122,21 @@ This project is licensed under the [MIT License](LICENSE.md).
## Changelog

For a list of changes, see our [changelog](CHANGELOG.md) page.

## Citing

This project is part of the [Seedcase
Project](https://seedcase-project.org), which is a collaborative effort
to create a framework for data management and analysis in research. If
you use this project in your work, please cite it as follows:

```{python}
#| output: asis
!uvx --quiet cffconvert --format apalike
```

Or as a BibTeX entry:

```{python}
!uvx --quiet cffconvert --format bibtex
```
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
[project]
name = "check-datapackage"
version = "0.23.1"
# TODO: Add a description of the package.
description = ""
description = "Check your Data Package's metadata against the Data Package standard to ensure that it's compliant with the standard"
authors = [
{name = "Luke W. Johnston", email = "lwjohnst@gmail.com" },
{name = "Kristiane Beicher", email = "kris.beicher@clin.au.dk" },
{name = "Signe Kirk Brødbæk", email = "signekb@clin.au.dk" },
{name = "Marton Vago", email = "marton.vago95@gmail.com" },
{name = "Joel Ostblom", email = "joel@joelostblom.com" },
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This this email file @joelostblom?

]
maintainers = [
{name = "Luke W. Johnston", email = "lwjohnst@gmail.com" },
{name = "Kristiane Beicher", email = "kris.beicher@clin.au.dk" },
{name = "Signe Kirk Brødbæk", email = "signekb@clin.au.dk" },
{name = "Marton Vago", email = "marton.vago95@gmail.com" },
{name = "Joel Ostblom", email = "joel@joelostblom.com" },
]
readme = "README.md"
license = "MIT"
Expand Down