diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 0000000..e233c2d --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,33 @@ +{ + "title": "metloom", + "description": "Location Oriented Observed Meteorology (LOOM): a Python package for retrieving point-based observed meteorology and snow data from networks and services including SNOTEL, CDEC, MesoWest, USGS, Met Norway, GeoSphere Austria, CUES, CSAS, SAIL, and SnowEx.", + "upload_type": "software", + "access_right": "open", + "license": "BSD-3-Clause", + "creators": [ + { + "name": "M3Works" + } + ], + "keywords": [ + "meteorology", + "snow", + "hydrology", + "observed-data", + "snotel", + "cdec", + "python" + ], + "related_identifiers": [ + { + "identifier": "https://github.com/M3Works/metloom", + "relation": "isSupplementTo", + "scheme": "url" + }, + { + "identifier": "https://pypi.org/project/metloom/", + "relation": "isIdenticalTo", + "scheme": "url" + } + ] +} diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..0078f54 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,35 @@ +# This CITATION.cff file provides citation metadata for metloom. +# Learn more: https://citation-file-format.github.io +# +# Authorship is currently the organization (M3Works). To credit individual +# contributors later, replace the single entity author below with entries like: +# - family-names: "Lastname" +# given-names: "Firstname" +# orcid: "https://orcid.org/0000-0000-0000-0000" +# affiliation: "M3Works" +cff-version: 1.2.0 +message: "If you use this software, please cite it using the metadata from this file." +title: metloom +abstract: >- + Location Oriented Observed Meteorology (LOOM): a Python package for + retrieving point-based observed meteorology and snow data from networks + and services including SNOTEL, CDEC, MesoWest, USGS, Met Norway, + GeoSphere Austria, CUES, CSAS, SAIL, and SnowEx. +type: software +authors: + - name: "M3Works" + website: "https://m3works.io" + email: "info@m3works.io" +version: 0.10.0 +date-released: "2026-07-30" +license: BSD-3-Clause +repository-code: "https://github.com/M3Works/metloom" +url: "https://metloom.readthedocs.io" +keywords: + - meteorology + - snow + - hydrology + - observed-data + - snotel + - cdec + - python diff --git a/setup.cfg b/setup.cfg index 401e71a..b82c4b0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,6 +11,10 @@ replace = version='{new_version}' search = __version__ = '{current_version}' replace = __version__ = '{new_version}' +[bumpversion:file:CITATION.cff] +search = version: {current_version} +replace = version: {new_version} + [bdist_wheel] universal = 1