Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add zenodo configuration #266

Merged
merged 5 commits into from
Mar 6, 2023
Merged
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
3 changes: 3 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ repos:
exclude: .rvc|.rvh|.rvi|.rvp|.rvt|.tpl|.txt|setup.cfg
- id: end-of-file-fixer
exclude: .ipynb|.rvc|.rvh|.rvi|.rvp|.rvt|.tpl|.txt
- id: check-json
- id: check-yaml
args: [ '--allow-multiple-documents' ]
- id: pretty-format-json
args: [ '--autofix', '--no-ensure-ascii', '--no-sort-keys' ]
- id: debug-statements
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
Expand Down
46 changes: 46 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"creators": [
{
"name": "Huard, David",
"affiliation": "Ouranos",
"orcid": "0000-0003-0311-5498"
},
{
"name": "Smith, Trevor James",
"affiliation": "Ouranos",
"orcid": "0000-0001-5393-8359"
},
{
"name": "Jauvin, Christian",
"orcid": "0000-0002-2257-5636"
},
{
"name": "Mai, Juliane",
"affiliation": "University of Waterloo",
"orcid": "0000-0002-1132-2342"
},
{
"name": "Arsenault, Richard",
"affiliation": "École de technologie supérieure",
"orcid": "0000-0003-2834-2750"
}
],
"keywords": [
"climate change",
"hydrological modelling",
"hydrology",
"model calibration",
"prediction",
"raven",
"simulation",
"web processing services"
],
"license": "Apache-2.0",
"communities": [
{
"identifier": "ouranos"
}
],
"upload_type": "software",
"access_right": "open"
}
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ exclude .editorconfig
exclude .pre-commit-config.yaml
exclude .readthedocs.yml
exclude .yamllint.yaml
exclude .zenodo.json
exclude Makefile
exclude environment.yml
exclude environment-rtd.yml
Expand Down
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@

linkcheck_ignore = [
r"https://www.ouranos.ca", # bad ssl certificate
# Added on 2023-03-06: Wiley does not allow linkcheck requests (error 403)
r"https://doi.org/10.1029/2020WR029229"
]

autosectionlabel_prefix_document = True
Expand Down