diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d7337d85e6..133a7d55c6 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -17,13 +17,15 @@ Closes # (if applicable). ## Checklist + + - [ ] I tested my contribution locally and it works as intended. - [ ] Code and workflow changes are sufficiently documented. - [ ] Changed dependencies are added to `envs/environment.yaml`. - [ ] Changes in configuration options are added in `config/config.default.yaml`. - [ ] Changes in configuration options are documented in `doc/configtables/*.csv`. - [ ] Changes in configuration options are added in `config/test/*.yaml`. -- [ ] OET license identifier is added to all edited or newly created code files. +- [ ] OET SPDX license header added to all touched files. - [ ] Sources of newly added data are documented in `doc/data_sources.rst`. - [ ] A release note `doc/release_notes.rst` is added. - [ ] Major features are listed in `README` and `doc/index.rst`. diff --git a/.gitignore b/.gitignore index bfa04ee0b4..1684f7acf6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Contributors to Open-TYNDP +# SPDX-FileCopyrightText: Open Energy Transition gGmbH # SPDX-FileCopyrightText: Contributors to PyPSA-Eur # # SPDX-License-Identifier: CC0-1.0 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b03d6a45cb..13a28b8cea 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,13 @@ +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # SPDX-FileCopyrightText: Contributors to PyPSA-Eur # # SPDX-License-Identifier: CC0-1.0 + exclude: "^LICENSES" ci: autoupdate_schedule: quarterly + skip: [reuse-open-tyndp, reuse-open-tyndp-smk] repos: - repo: https://github.com/pre-commit/pre-commit-hooks @@ -56,6 +59,27 @@ repos: hooks: - id: snakefmt + # Check and auto-fix SPDX copyright headers in modified files +- repo: local + hooks: + - id: reuse-open-tyndp + name: reuse-open-tyndp + description: "Add Open-TYNDP SPDX copyright headers to modified files" + entry: bash -c "reuse annotate --exclude-year --merge-copyrights --skip-unrecognised --copyright='Contributors to Open-TYNDP ' $(git diff --name-status --merge-base master | grep -vE '^D|\.github/|borg-it|data/|doc/configtables/|doc/img/|REUSE\.toml' | awk '{print $2}')" + pass_filenames: false + language: python + additional_dependencies: ["reuse"] + +- repo: local + hooks: + - id: reuse-open-tyndp-smk + name: reuse-open-tyndp-smk # TODO Remove hook once reuse-tool PR #1206 has been merged + description: "Add Open-TYNDP SPDX copyright headers to modified SMK files" + entry: bash -c "reuse annotate --exclude-year --merge-copyrights -s python --copyright='Contributors to Open-TYNDP ' $(git diff --name-only --merge-base master | grep -vE '^D' | awk '{print $2}' | grep -E '\\.smk$|Snakefile|matplotlibrc')" + pass_filenames: false + language: python + additional_dependencies: ["reuse"] + # Check for FSFE REUSE compliance (licensing) - repo: https://github.com/fsfe/reuse-tool rev: v5.0.2 diff --git a/CITATION.cff b/CITATION.cff index 35a65c215d..8b9e11a51a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: CC0-1.0 diff --git a/config/config.private.yaml b/config/config.private.yaml index da120c89f4..4e45379b3c 100644 --- a/config/config.private.yaml +++ b/config/config.private.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: CC0-1.0 diff --git a/config/config.tyndp.yaml b/config/config.tyndp.yaml index 01285c3b86..dbe3a75f6f 100644 --- a/config/config.tyndp.yaml +++ b/config/config.tyndp.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: CC0-1.0 diff --git a/doc/Makefile b/doc/Makefile index 5db6eb42e7..3937548fb6 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,4 +1,3 @@ -# SPDX-FileCopyrightText: Contributors to Open-TYNDP # SPDX-FileCopyrightText: Contributors to PyPSA-Eur # # SPDX-License-Identifier: MIT diff --git a/doc/configuration.rst b/doc/configuration.rst index 2dd6f0503a..bb8fee716e 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _config: diff --git a/doc/contributing.rst b/doc/contributing.rst index 7f928fec11..eeca04ba8a 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -1,7 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ####################### Contributing diff --git a/doc/contributors.rst b/doc/contributors.rst index 94b4db2bdd..4b46ab1fb6 100644 --- a/doc/contributors.rst +++ b/doc/contributors.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 #################### Contributors diff --git a/doc/costs.rst b/doc/costs.rst index 31936c7121..f5431714ae 100644 --- a/doc/costs.rst +++ b/doc/costs.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ############################ Techno-Economic Assumptions diff --git a/doc/data-base-network.rst b/doc/data-base-network.rst index 504cc85ffd..be75758139 100644 --- a/doc/data-base-network.rst +++ b/doc/data-base-network.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ############# Base network diff --git a/doc/data-bundle.rst b/doc/data-bundle.rst index 44ca8c54f9..5a4967b4f3 100644 --- a/doc/data-bundle.rst +++ b/doc/data-bundle.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ################### Zenodo data bundle diff --git a/doc/data-repos.rst b/doc/data-repos.rst index 1478e1e7d6..efafb242e3 100644 --- a/doc/data-repos.rst +++ b/doc/data-repos.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########### Repository diff --git a/doc/data-retrieval.rst b/doc/data-retrieval.rst index 89c887e2fd..aee5cce4cc 100644 --- a/doc/data-retrieval.rst +++ b/doc/data-retrieval.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ######################### Specific retrieval rules diff --git a/doc/data_sources.rst b/doc/data_sources.rst index f7af72968d..334cea7984 100644 --- a/doc/data_sources.rst +++ b/doc/data_sources.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ############# Data Sources diff --git a/doc/foresight.rst b/doc/foresight.rst index 74643b0133..6a49c63373 100644 --- a/doc/foresight.rst +++ b/doc/foresight.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _foresight: diff --git a/doc/index.rst b/doc/index.rst index d94434160e..03594044ba 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ############################################################################################################# Open-TYNDP: Interfacing Open Energy System Planning with ENTSO-E Models and Contributing to TYNDP diff --git a/doc/installation.rst b/doc/installation.rst index d8342249e8..1073eb187a 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -1,7 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _installation: diff --git a/doc/introduction.rst b/doc/introduction.rst index 5dcaeb48c3..ce69958260 100644 --- a/doc/introduction.rst +++ b/doc/introduction.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _intro: diff --git a/doc/licenses.rst b/doc/licenses.rst index 2541e08c87..f4201bcf65 100644 --- a/doc/licenses.rst +++ b/doc/licenses.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Licenses diff --git a/doc/limitations.rst b/doc/limitations.rst index 0c878659a5..c73d44249c 100644 --- a/doc/limitations.rst +++ b/doc/limitations.rst @@ -1,7 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Limitations diff --git a/doc/plotting.rst b/doc/plotting.rst index 4d4313b81b..2ae8e4bf9b 100644 --- a/doc/plotting.rst +++ b/doc/plotting.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Plotting and Summaries diff --git a/doc/preparation.rst b/doc/preparation.rst index fc9f5a29e9..befe77e4db 100644 --- a/doc/preparation.rst +++ b/doc/preparation.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Building Electricity Networks diff --git a/doc/publications.rst b/doc/publications.rst index 8b7b75e970..d610a78d8b 100644 --- a/doc/publications.rst +++ b/doc/publications.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Publications diff --git a/doc/release_notes.rst b/doc/release_notes.rst index cd5ea93954..f9befcf86d 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -1,9 +1,8 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Release Notes diff --git a/doc/retrieve.rst b/doc/retrieve.rst index 45f1004956..b6d967c19e 100644 --- a/doc/retrieve.rst +++ b/doc/retrieve.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _data: diff --git a/doc/sector.rst b/doc/sector.rst index 2be4895b27..6ab7f935e6 100644 --- a/doc/sector.rst +++ b/doc/sector.rst @@ -1,8 +1,7 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to Open-TYNDP - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Building Sector-Coupled Networks diff --git a/doc/solving.rst b/doc/solving.rst index 0721963122..35d7f55c8e 100644 --- a/doc/solving.rst +++ b/doc/solving.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Solving Networks diff --git a/doc/spatial_resolution.rst b/doc/spatial_resolution.rst index 8c6b92345b..6d5be817a6 100644 --- a/doc/spatial_resolution.rst +++ b/doc/spatial_resolution.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _spatial_resolution: diff --git a/doc/supply_demand.rst b/doc/supply_demand.rst index 79fa2a0faf..65838f1272 100644 --- a/doc/supply_demand.rst +++ b/doc/supply_demand.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Supply and demand diff --git a/doc/support.rst b/doc/support.rst index bf89cba793..8f2226f4f0 100644 --- a/doc/support.rst +++ b/doc/support.rst @@ -1,8 +1,7 @@ - +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Support @@ -10,7 +9,6 @@ Support Please consider the following ways to reach out to the community and the contributors: -* To **discuss** with other PyPSA users, organise projects, share news, and get in touch with the community you can use the `Discord server `_. - * The `PyPSA mailing `_ list previously was used for all kind of questions. Please use Discord server going forward, while the mailing list remains accessible as a knowledge archive. -* For **bugs and feature requests**, please use the `issue tracker `_. -* We strongly welcome anyone interested in providing **contributions** to this project. If you have any ideas, suggestions or encounter problems, feel invited to file issues or make pull requests on `Github `_. +- To **discuss** with other PyPSA users, organise projects, share news, and get in touch with the community you can use the `Discord server `__. +- For **bugs and feature requests**, please use the appropriate GitHub issues page. Issues specific to Open-TYNDP belong on the `Open-TYNDP Issues page `__, while PyPSA-Eur issues should be submitted to the `PyPSA-Eur Github Issues page `__. +* We strongly welcome anyone interested in providing **contributions** to this project. If you have any ideas, suggestions or encounter problems, feel invited to file issues or make pull requests on `Github `__. diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 9af09d7a4b..1e9fb735de 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _tutorial: diff --git a/doc/tutorial_sector.rst b/doc/tutorial_sector.rst index 2139db6ec6..7044198716 100644 --- a/doc/tutorial_sector.rst +++ b/doc/tutorial_sector.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _tutorial_sector: diff --git a/doc/tyndp-2024-bundle.rst b/doc/tyndp-2024-bundle.rst index 19d59a6eff..0d2d73bb9b 100644 --- a/doc/tyndp-2024-bundle.rst +++ b/doc/tyndp-2024-bundle.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to Open-TYNDP .. - SPDX-FileCopyrightText: Open Energy Transition gGmbH - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ################### TYNDP 2024 data bundle for PyPSA-Eur diff --git a/doc/validation.rst b/doc/validation.rst index 0dd14e7105..877f230b29 100644 --- a/doc/validation.rst +++ b/doc/validation.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 ########################################## Validation diff --git a/doc/wildcards.rst b/doc/wildcards.rst index f69b213941..ae5da7fae8 100644 --- a/doc/wildcards.rst +++ b/doc/wildcards.rst @@ -1,7 +1,6 @@ +.. SPDX-FileCopyrightText: Contributors to PyPSA-Eur .. - SPDX-FileCopyrightText: Contributors to PyPSA-Eur - - SPDX-License-Identifier: CC-BY-4.0 +.. SPDX-License-Identifier: CC-BY-4.0 .. _wildcards: diff --git a/report/references.bib b/report/references.bib index 6f3ef5de5a..a09c98a562 100644 --- a/report/references.bib +++ b/report/references.bib @@ -1,6 +1,8 @@ -% SPDX-FileCopyrightText: Open Energy Transition gGmbH -% -% SPDX-License-Identifier: MIT +@Comment{ +SPDX-FileCopyrightText: Open Energy Transition gGmbH + +SPDX-License-Identifier: MIT +} @misc{ Nobody06, author = "Nobody Jr", diff --git a/scripts/build_renewable_profiles_pecd.py b/scripts/build_renewable_profiles_pecd.py index 67646349b6..de2a85d4de 100644 --- a/scripts/build_renewable_profiles_pecd.py +++ b/scripts/build_renewable_profiles_pecd.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/build_tyndp_h2_imports.py b/scripts/build_tyndp_h2_imports.py index 00718fb8c8..edea49665f 100644 --- a/scripts/build_tyndp_h2_imports.py +++ b/scripts/build_tyndp_h2_imports.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/build_tyndp_h2_network.py b/scripts/build_tyndp_h2_network.py index c0c83e2090..c3b4f5a6a6 100644 --- a/scripts/build_tyndp_h2_network.py +++ b/scripts/build_tyndp_h2_network.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/build_tyndp_offshore_hubs.py b/scripts/build_tyndp_offshore_hubs.py index 9fdf4a0e32..744d496541 100644 --- a/scripts/build_tyndp_offshore_hubs.py +++ b/scripts/build_tyndp_offshore_hubs.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/clean_pecd_data.py b/scripts/clean_pecd_data.py index c582b08b1d..cc687023f7 100644 --- a/scripts/clean_pecd_data.py +++ b/scripts/clean_pecd_data.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/clean_tyndp_demand.py b/scripts/clean_tyndp_demand.py index 3a03c391f5..558d6c0b2e 100644 --- a/scripts/clean_tyndp_demand.py +++ b/scripts/clean_tyndp_demand.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/clean_tyndp_h2_imports.py b/scripts/clean_tyndp_h2_imports.py index ffe1604044..9d69b22a89 100644 --- a/scripts/clean_tyndp_h2_imports.py +++ b/scripts/clean_tyndp_h2_imports.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/plot_base_hydrogen_network.py b/scripts/plot_base_hydrogen_network.py index d42101b1a6..6616cf932e 100644 --- a/scripts/plot_base_hydrogen_network.py +++ b/scripts/plot_base_hydrogen_network.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/plot_offshore_network.py b/scripts/plot_offshore_network.py index 3743f94cea..d37ff4878c 100644 --- a/scripts/plot_offshore_network.py +++ b/scripts/plot_offshore_network.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/retrieve_tyndp_bundle.py b/scripts/retrieve_tyndp_bundle.py index 4f307622d3..a27c06f195 100644 --- a/scripts/retrieve_tyndp_bundle.py +++ b/scripts/retrieve_tyndp_bundle.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """ diff --git a/scripts/retrieve_tyndp_pecd_data.py b/scripts/retrieve_tyndp_pecd_data.py index 8dc9ffdb1b..fc9aebb188 100644 --- a/scripts/retrieve_tyndp_pecd_data.py +++ b/scripts/retrieve_tyndp_pecd_data.py @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Open Energy Transition gGmbH +# SPDX-FileCopyrightText: Contributors to Open-TYNDP # # SPDX-License-Identifier: MIT """