From 340480dcacc779fdb74d55820d8b5f089b527985 Mon Sep 17 00:00:00 2001 From: HeinrichAD Date: Thu, 4 Jul 2024 15:18:22 +0200 Subject: [PATCH] release candidate 1 Co-authored-by: Franke, Benedikt --- .editorconfig | 5 + .gitattributes | 5 + .github/workflows/main.yml | 20 +- .gitignore | 5 + .markdownlint.json | 5 + .pre-commit-config.yaml | 5 + .reuse/dep5 | 12 + .vscode/extensions.json | 4 + .vscode/launch.json | 4 + .vscode/settings.json | 4 + LICENSE | 201 -------------- LICENSES/Apache-2.0.txt | 73 +++++ LICENSES/CC-BY-4.0.txt | 156 +++++++++++ LICENSES/LicenseRef-Proprietary-BMWK.txt | 3 + LICENSES/LicenseRef-Proprietary-Catena-X.txt | 3 + LICENSES/LicenseRef-Proprietary-DLR.txt | 4 + LICENSES/LicenseRef-Proprietary-EU.txt | 3 + README.md | 25 ++ dev | 23 +- dlr/ki/logging/__init__.py | 5 + dlr/ki/logging/config.py | 5 + dlr/ki/logging/formatter/__init__.py | 5 + dlr/ki/logging/formatter/colored_console.py | 5 + dlr/ki/logging/formatter/term_escape_code.py | 5 + dlr/ki/logging/formatter/utils.py | 5 + dlr/ki/logging/loader.py | 5 + docs/.overrides/.icons/dlr-ki.svg.license | 4 + docs/.overrides/.icons/dlr-logo.svg.license | 4 + docs/assets/logo/DLR_Logo_EN_black.svg | 176 ++++++++++++ .../assets/logo/DLR_Logo_EN_black.svg.license | 4 + docs/assets/logo/DLR_Logo_EN_white.svg | 176 ++++++++++++ .../assets/logo/DLR_Logo_EN_white.svg.license | 4 + .../EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg | 57 ++++ ...edbyEU_VERTICAL_RGB_Monochrome.svg.license | 3 + .../logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg | 109 ++++++++ ...EN_fundedbyEU_VERTICAL_RGB_NEG.svg.license | 3 + .../logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg | 109 ++++++++ ...EN_fundedbyEU_VERTICAL_RGB_POS.svg.license | 3 + docs/assets/logo/bmwk.png | Bin 0 -> 100638 bytes docs/assets/logo/bmwk.png.license | 3 + docs/assets/logo/bmwk_en.png | Bin 0 -> 26159 bytes docs/assets/logo/bmwk_en.png.license | 3 + docs/assets/logo/catena-x-black.svg | 35 +++ docs/assets/logo/catena-x-black.svg.license | 3 + docs/assets/logo/catena-x-white.svg | 35 +++ docs/assets/logo/catena-x-white.svg.license | 3 + docs/index.md | 6 + docs/javascripts/katex.js | 5 + docs/styles/style.css | 7 + examples/logging.conf | 5 + examples/logging.yml | 5 + licenses/license.txt | 255 ------------------ licenses/license_info.csv | 4 - licenses/license_info.json | 17 -- licenses/license_info.md | 5 - licenses/license_info.no_versions.csv | 4 - licenses/license_info.no_versions.json | 14 - licenses/license_info.no_versions.md | 5 - mkdocs.yml | 7 +- pyproject.toml | 22 +- scripts/utils.sh | 6 + tox.ini | 47 +--- 62 files changed, 1180 insertions(+), 563 deletions(-) create mode 100644 .reuse/dep5 delete mode 100644 LICENSE create mode 100644 LICENSES/Apache-2.0.txt create mode 100644 LICENSES/CC-BY-4.0.txt create mode 100644 LICENSES/LicenseRef-Proprietary-BMWK.txt create mode 100644 LICENSES/LicenseRef-Proprietary-Catena-X.txt create mode 100644 LICENSES/LicenseRef-Proprietary-DLR.txt create mode 100644 LICENSES/LicenseRef-Proprietary-EU.txt create mode 100644 docs/.overrides/.icons/dlr-ki.svg.license create mode 100644 docs/.overrides/.icons/dlr-logo.svg.license create mode 100644 docs/assets/logo/DLR_Logo_EN_black.svg create mode 100644 docs/assets/logo/DLR_Logo_EN_black.svg.license create mode 100644 docs/assets/logo/DLR_Logo_EN_white.svg create mode 100644 docs/assets/logo/DLR_Logo_EN_white.svg.license create mode 100644 docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg create mode 100644 docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg.license create mode 100644 docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg create mode 100644 docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg.license create mode 100644 docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg create mode 100644 docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg.license create mode 100644 docs/assets/logo/bmwk.png create mode 100644 docs/assets/logo/bmwk.png.license create mode 100644 docs/assets/logo/bmwk_en.png create mode 100644 docs/assets/logo/bmwk_en.png.license create mode 100644 docs/assets/logo/catena-x-black.svg create mode 100644 docs/assets/logo/catena-x-black.svg.license create mode 100644 docs/assets/logo/catena-x-white.svg create mode 100644 docs/assets/logo/catena-x-white.svg.license delete mode 100644 licenses/license.txt delete mode 100644 licenses/license_info.csv delete mode 100644 licenses/license_info.json delete mode 100644 licenses/license_info.md delete mode 100644 licenses/license_info.no_versions.csv delete mode 100644 licenses/license_info.no_versions.json delete mode 100644 licenses/license_info.no_versions.md diff --git a/.editorconfig b/.editorconfig index 1fa5de1..c6693c9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + root = true [*] diff --git a/.gitattributes b/.gitattributes index 6313b56..16b7b5e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,6 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + * text=auto eol=lf diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fd6231..d9bdbdc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + name: Main on: @@ -50,8 +55,21 @@ jobs: - name: Start type checking run: bash ./dev mypy + license-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.10' + cache: 'pip' + - name: Install dependencies + run: bash ./dev install -e ".[all]" + - name: Start license check + run: bash ./dev licenses + build-pages: - needs: [lint-code, lint-doc, lint-scripts, mypy] + needs: [lint-code, lint-doc, lint-scripts, mypy, license-check] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.gitignore b/.gitignore index 638a728..6626efd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + # ignore nodejs requirements for markdown linting node_modules package-lock.json diff --git a/.markdownlint.json b/.markdownlint.json index 1c93189..0a2b2d1 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,3 +1,8 @@ +// SPDX-FileCopyrightText: 2024 Benedikt Franke +// SPDX-FileCopyrightText: 2024 Florian Heinrich +// +// SPDX-License-Identifier: Apache-2.0 + // Reference: https://github.com/DavidAnson/markdownlint // Rules: https://github.com/DavidAnson/markdownlint#rules--aliases // Exception: https://github.com/DavidAnson/markdownlint#configuration diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f11f82a..4a60889 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + repos: - repo: https://github.com/pycqa/flake8 rev: 6.0.0 diff --git a/.reuse/dep5 b/.reuse/dep5 new file mode 100644 index 0000000..d034dbe --- /dev/null +++ b/.reuse/dep5 @@ -0,0 +1,12 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: dlr-logging +Upstream-Contact: + Benedikt Franke + Florian Heinrich +Source: https://github.com/DLR-KI/fl-logging-base + +# Sample paragraph, commented out: +# +# Files: src/* +# Copyright: $YEAR $NAME <$CONTACT> +# License: ... diff --git a/.vscode/extensions.json b/.vscode/extensions.json index b54e820..88fb944 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2024 Benedikt Franke +// SPDX-FileCopyrightText: 2024 Florian Heinrich +// +// SPDX-License-Identifier: Apache-2.0 { "recommendations": [ "davidanson.vscode-markdownlint", diff --git a/.vscode/launch.json b/.vscode/launch.json index 806ea31..e63876d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2024 Benedikt Franke +// SPDX-FileCopyrightText: 2024 Florian Heinrich +// +// SPDX-License-Identifier: Apache-2.0 { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. diff --git a/.vscode/settings.json b/.vscode/settings.json index 1e09005..ef33d8b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2024 Benedikt Franke +// SPDX-FileCopyrightText: 2024 Florian Heinrich +// +// SPDX-License-Identifier: Apache-2.0 { "cSpell.allowCompoundWords": true, "cSpell.language": "en,scientific-terms-us", diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 261eeb9..0000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/LICENSES/Apache-2.0.txt b/LICENSES/Apache-2.0.txt new file mode 100644 index 0000000..137069b --- /dev/null +++ b/LICENSES/Apache-2.0.txt @@ -0,0 +1,73 @@ +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. + +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. + +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. + +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. + +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. + +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. + +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). + +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. + +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." + +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: + + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. + + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/LICENSES/CC-BY-4.0.txt b/LICENSES/CC-BY-4.0.txt new file mode 100644 index 0000000..13ca539 --- /dev/null +++ b/LICENSES/CC-BY-4.0.txt @@ -0,0 +1,156 @@ +Creative Commons Attribution 4.0 International + + Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. + +Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors. + +Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. + +Section 1 – Definitions. + + a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. + + d. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. + + g. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights under this Public License. + + i. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. + +Section 2 – Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: + + A. reproduce and Share the Licensed Material, in whole or in part; and + + B. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. + + 3. Term. The term of this Public License is specified in Section 6(a). + + 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. + + 5. Downstream recipients. + + A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. + + B. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. + + 6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). + +b. Other rights. + + 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this Public License. + + 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. + +Section 3 – License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified form), You must: + + A. retain the following if it is supplied by the Licensor with the Licensed Material: + + i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of warranties; + + v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; + + B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and + + C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. + + 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. + +Section 4 – Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; + + b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. +For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. + +Section 5 – Disclaimer of Warranties and Limitation of Liability. + + a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. + + b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. + + c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. + +Section 6 – Term and Termination. + + a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or + + 2. upon express reinstatement by the Licensor. + + c. For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. + + d. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. + + e. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. + +Section 7 – Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. + +Section 8 – Interpretation. + + a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. + + c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. + + d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. + +Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/LICENSES/LicenseRef-Proprietary-BMWK.txt b/LICENSES/LicenseRef-Proprietary-BMWK.txt new file mode 100644 index 0000000..e62f07f --- /dev/null +++ b/LICENSES/LicenseRef-Proprietary-BMWK.txt @@ -0,0 +1,3 @@ +Copyright (C) Bundesministeriums für Wirtschaft und Klimaschutz (BMWK) - All Rights Reserved +Unauthorized copying of this file, via any medium is strictly prohibited +Proprietary, reuse prohibited diff --git a/LICENSES/LicenseRef-Proprietary-Catena-X.txt b/LICENSES/LicenseRef-Proprietary-Catena-X.txt new file mode 100644 index 0000000..5e12159 --- /dev/null +++ b/LICENSES/LicenseRef-Proprietary-Catena-X.txt @@ -0,0 +1,3 @@ +Copyright (C) Catena-X - All Rights Reserved +Unauthorized copying of this file, via any medium is strictly prohibited +Proprietary, reuse prohibited diff --git a/LICENSES/LicenseRef-Proprietary-DLR.txt b/LICENSES/LicenseRef-Proprietary-DLR.txt new file mode 100644 index 0000000..5e69d92 --- /dev/null +++ b/LICENSES/LicenseRef-Proprietary-DLR.txt @@ -0,0 +1,4 @@ +Copyright (C) German Aerospace Center (DLR) - All Rights Reserved +Unauthorized copying of this file, via any medium is strictly prohibited +Proprietary, reuse prohibited +Written by Benedikt Franke and "Florian Heinrich , 2024 diff --git a/LICENSES/LicenseRef-Proprietary-EU.txt b/LICENSES/LicenseRef-Proprietary-EU.txt new file mode 100644 index 0000000..43488b9 --- /dev/null +++ b/LICENSES/LicenseRef-Proprietary-EU.txt @@ -0,0 +1,3 @@ +Copyright (C) European Union - All Rights Reserved +Unauthorized copying of this file, via any medium is strictly prohibited +Proprietary, reuse prohibited diff --git a/README.md b/README.md index 403038d..e7e1daf 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,10 @@ + + # Logging Base Module This repository contains a small Python package designed to simplify the process of enabling consistent logging across multiple projects. @@ -102,3 +109,21 @@ Returns: Dict[str, Any]: logging configuration dict """ ``` + +## Credits + +
+
+ DLR + DLR +
+ Catena-X + Catena-X +
+
+
+ European Union + European Union + BMWK +
+
diff --git a/dev b/dev index 94d9602..1b34e7a 100755 --- a/dev +++ b/dev @@ -1,4 +1,10 @@ #!/bin/bash + +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + ############################################################################### # Helper commands # ################### @@ -62,8 +68,7 @@ function help() { info2 " coverage-report Generate test coverage report" info2 " doc Start documentation server" info2 " doc-build Build documentation" - info2 " licenses Generate licenses" - info2 " licenses-check Check licenses" + info2 " licenses Check licenses" info2 " safety-check Check dependencies for known security vulnerabilities" info2 " install Install package" info2 " clean Clean up local files" @@ -231,16 +236,10 @@ function doc-build() { } function licenses() { - info "generate licenses" - # create a tox environment and pull in license information - license_dir="${PROJECT_ROOT}/licenses" - mkdir -p "${license_dir}" - python -m tox --recreate -e licenses -} - -function licenses-check() { - # check if there has been a change in license information, used in CI - git --no-pager diff --exit-code "${PROJECT_ROOT}/licenses/license_info.no_versions.csv" + info "search for license conflicts" + licensecheck + info "search for non-compliant files with REUSE" + python -m reuse lint } function safety-check() { diff --git a/dlr/ki/logging/__init__.py b/dlr/ki/logging/__init__.py index 42def8e..08c0024 100644 --- a/dlr/ki/logging/__init__.py +++ b/dlr/ki/logging/__init__.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + """DLR Logging Base Module""" from .config import get_default_logging_dict diff --git a/dlr/ki/logging/config.py b/dlr/ki/logging/config.py index 14184b4..d0d5e2f 100644 --- a/dlr/ki/logging/config.py +++ b/dlr/ki/logging/config.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + from pathlib import Path from typing import Any, Dict, Optional diff --git a/dlr/ki/logging/formatter/__init__.py b/dlr/ki/logging/formatter/__init__.py index 8145a08..0a5f45f 100644 --- a/dlr/ki/logging/formatter/__init__.py +++ b/dlr/ki/logging/formatter/__init__.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + from .colored_console import ColoredConsoleFormatter from .term_escape_code import TermEscapeCodeFormatter diff --git a/dlr/ki/logging/formatter/colored_console.py b/dlr/ki/logging/formatter/colored_console.py index 6e8d3a5..8150622 100644 --- a/dlr/ki/logging/formatter/colored_console.py +++ b/dlr/ki/logging/formatter/colored_console.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + from ansi.colour.base import Graphic as AnsiGraphic import ansi.color as ansi from copy import copy diff --git a/dlr/ki/logging/formatter/term_escape_code.py b/dlr/ki/logging/formatter/term_escape_code.py index 3123355..3cd5bda 100644 --- a/dlr/ki/logging/formatter/term_escape_code.py +++ b/dlr/ki/logging/formatter/term_escape_code.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + from logging import Formatter # type: ignore [attr-defined] from .utils import non_ansi diff --git a/dlr/ki/logging/formatter/utils.py b/dlr/ki/logging/formatter/utils.py index 7049b7b..cc0ef91 100644 --- a/dlr/ki/logging/formatter/utils.py +++ b/dlr/ki/logging/formatter/utils.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + import re diff --git a/dlr/ki/logging/loader.py b/dlr/ki/logging/loader.py index 9fa805b..218b8aa 100644 --- a/dlr/ki/logging/loader.py +++ b/dlr/ki/logging/loader.py @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + from logging.config import dictConfig, fileConfig # type: ignore [attr-defined] from typing import Any, Dict, Optional, Union import yaml diff --git a/docs/.overrides/.icons/dlr-ki.svg.license b/docs/.overrides/.icons/dlr-ki.svg.license new file mode 100644 index 0000000..95fc240 --- /dev/null +++ b/docs/.overrides/.icons/dlr-ki.svg.license @@ -0,0 +1,4 @@ +SPDX-FileCopyrightText: 2024 Benedikt Franke +SPDX-FileCopyrightText: 2024 Florian Heinrich + +SPDX-License-Identifier: LicenseRef-Proprietary-DLR diff --git a/docs/.overrides/.icons/dlr-logo.svg.license b/docs/.overrides/.icons/dlr-logo.svg.license new file mode 100644 index 0000000..95fc240 --- /dev/null +++ b/docs/.overrides/.icons/dlr-logo.svg.license @@ -0,0 +1,4 @@ +SPDX-FileCopyrightText: 2024 Benedikt Franke +SPDX-FileCopyrightText: 2024 Florian Heinrich + +SPDX-License-Identifier: LicenseRef-Proprietary-DLR diff --git a/docs/assets/logo/DLR_Logo_EN_black.svg b/docs/assets/logo/DLR_Logo_EN_black.svg new file mode 100644 index 0000000..410fea3 --- /dev/null +++ b/docs/assets/logo/DLR_Logo_EN_black.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/assets/logo/DLR_Logo_EN_black.svg.license b/docs/assets/logo/DLR_Logo_EN_black.svg.license new file mode 100644 index 0000000..95fc240 --- /dev/null +++ b/docs/assets/logo/DLR_Logo_EN_black.svg.license @@ -0,0 +1,4 @@ +SPDX-FileCopyrightText: 2024 Benedikt Franke +SPDX-FileCopyrightText: 2024 Florian Heinrich + +SPDX-License-Identifier: LicenseRef-Proprietary-DLR diff --git a/docs/assets/logo/DLR_Logo_EN_white.svg b/docs/assets/logo/DLR_Logo_EN_white.svg new file mode 100644 index 0000000..3ef7666 --- /dev/null +++ b/docs/assets/logo/DLR_Logo_EN_white.svg @@ -0,0 +1,176 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/assets/logo/DLR_Logo_EN_white.svg.license b/docs/assets/logo/DLR_Logo_EN_white.svg.license new file mode 100644 index 0000000..95fc240 --- /dev/null +++ b/docs/assets/logo/DLR_Logo_EN_white.svg.license @@ -0,0 +1,4 @@ +SPDX-FileCopyrightText: 2024 Benedikt Franke +SPDX-FileCopyrightText: 2024 Florian Heinrich + +SPDX-License-Identifier: LicenseRef-Proprietary-DLR diff --git a/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg new file mode 100644 index 0000000..7919f51 --- /dev/null +++ b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + Funded by the European Union + + + + diff --git a/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg.license b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg.license new file mode 100644 index 0000000..e2f9577 --- /dev/null +++ b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_Monochrome.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2024 European Union + +SPDX-License-Identifier: LicenseRef-Proprietary-EU diff --git a/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg new file mode 100644 index 0000000..06ba813 --- /dev/null +++ b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + Funded by the European Union + + + + diff --git a/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg.license b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg.license new file mode 100644 index 0000000..e2f9577 --- /dev/null +++ b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_NEG.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2024 European Union + +SPDX-License-Identifier: LicenseRef-Proprietary-EU diff --git a/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg new file mode 100644 index 0000000..78ec319 --- /dev/null +++ b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + Funded by the European Union + + + + diff --git a/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg.license b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg.license new file mode 100644 index 0000000..e2f9577 --- /dev/null +++ b/docs/assets/logo/EN_fundedbyEU_VERTICAL_RGB_POS.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2024 European Union + +SPDX-License-Identifier: LicenseRef-Proprietary-EU diff --git a/docs/assets/logo/bmwk.png b/docs/assets/logo/bmwk.png new file mode 100644 index 0000000000000000000000000000000000000000..ce87fa4c4890b9c20fb3c442abfb974d1f5d429a GIT binary patch literal 100638 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 literal 0 HcmV?d00001 diff --git a/docs/assets/logo/bmwk_en.png.license b/docs/assets/logo/bmwk_en.png.license new file mode 100644 index 0000000..b4829fc --- /dev/null +++ b/docs/assets/logo/bmwk_en.png.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2024 Bundesministeriums für Wirtschaft und Klimaschutz (BMWK) + +SPDX-License-Identifier: LicenseRef-Proprietary-BMWK diff --git a/docs/assets/logo/catena-x-black.svg b/docs/assets/logo/catena-x-black.svg new file mode 100644 index 0000000..c097bfe --- /dev/null +++ b/docs/assets/logo/catena-x-black.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/assets/logo/catena-x-black.svg.license b/docs/assets/logo/catena-x-black.svg.license new file mode 100644 index 0000000..119d072 --- /dev/null +++ b/docs/assets/logo/catena-x-black.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2024 Catena-X + +SPDX-License-Identifier: LicenseRef-Proprietary-Catena-X diff --git a/docs/assets/logo/catena-x-white.svg b/docs/assets/logo/catena-x-white.svg new file mode 100644 index 0000000..c5f7e05 --- /dev/null +++ b/docs/assets/logo/catena-x-white.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/assets/logo/catena-x-white.svg.license b/docs/assets/logo/catena-x-white.svg.license new file mode 100644 index 0000000..119d072 --- /dev/null +++ b/docs/assets/logo/catena-x-white.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2024 Catena-X + +SPDX-License-Identifier: LicenseRef-Proprietary-Catena-X diff --git a/docs/index.md b/docs/index.md index 6861b44..e8b0633 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,6 +2,12 @@ title: Home hide: navigation --- + # Logging Base Module diff --git a/docs/javascripts/katex.js b/docs/javascripts/katex.js index f7fd704..150a187 100644 --- a/docs/javascripts/katex.js +++ b/docs/javascripts/katex.js @@ -1,3 +1,8 @@ +// SPDX-FileCopyrightText: 2024 Benedikt Franke +// SPDX-FileCopyrightText: 2024 Florian Heinrich +// +// SPDX-License-Identifier: CC-BY-4.0 + document$.subscribe(({ body }) => { renderMathInElement(body, { delimiters: [ diff --git a/docs/styles/style.css b/docs/styles/style.css index a03ca4f..7ca82a3 100644 --- a/docs/styles/style.css +++ b/docs/styles/style.css @@ -1,3 +1,10 @@ +/* + * SPDX-FileCopyrightText: 2024 Benedikt Franke + * SPDX-FileCopyrightText: 2024 Florian Heinrich + * + * SPDX-License-Identifier: CC-BY-4.0 + */ + .md-content { text-align: justify; } diff --git a/examples/logging.conf b/examples/logging.conf index 416264f..a9984ef 100644 --- a/examples/logging.conf +++ b/examples/logging.conf @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + [loggers] keys=root,msc,matplotlib,PIL diff --git a/examples/logging.yml b/examples/logging.yml index 4c84057..71fdce9 100644 --- a/examples/logging.yml +++ b/examples/logging.yml @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + version: 1 root: diff --git a/licenses/license.txt b/licenses/license.txt deleted file mode 100644 index 11bdeb6..0000000 --- a/licenses/license.txt +++ /dev/null @@ -1,255 +0,0 @@ -PyYAML -6.0.1 -MIT License -Copyright (c) 2017-2021 Ingy döt Net -Copyright (c) 2006-2016 Kirill Simonov - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -ansi -0.3.7 -MIT License -Copyright (c) 2015 Wijnand Modderman-Lenstra - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -dlr-logging -0.0.3.dev0 -Apache Software License - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - - diff --git a/licenses/license_info.csv b/licenses/license_info.csv deleted file mode 100644 index dcb7349..0000000 --- a/licenses/license_info.csv +++ /dev/null @@ -1,4 +0,0 @@ -"Name","Version","License" -"PyYAML","6.0.1","MIT License" -"ansi","0.3.7","MIT License" -"dlr-logging","0.0.3.dev0","Apache Software License" diff --git a/licenses/license_info.json b/licenses/license_info.json deleted file mode 100644 index 2d86f02..0000000 --- a/licenses/license_info.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - { - "License": "MIT License", - "Name": "PyYAML", - "Version": "6.0.1" - }, - { - "License": "MIT License", - "Name": "ansi", - "Version": "0.3.7" - }, - { - "License": "Apache Software License", - "Name": "dlr-logging", - "Version": "0.0.3.dev0" - } -] diff --git a/licenses/license_info.md b/licenses/license_info.md deleted file mode 100644 index a915988..0000000 --- a/licenses/license_info.md +++ /dev/null @@ -1,5 +0,0 @@ -| Name | Version | License | -|-------------|------------|-------------------------| -| PyYAML | 6.0.1 | MIT License | -| ansi | 0.3.7 | MIT License | -| dlr-logging | 0.0.3.dev0 | Apache Software License | diff --git a/licenses/license_info.no_versions.csv b/licenses/license_info.no_versions.csv deleted file mode 100644 index a5e6e41..0000000 --- a/licenses/license_info.no_versions.csv +++ /dev/null @@ -1,4 +0,0 @@ -"Name","License" -"PyYAML","MIT License" -"ansi","MIT License" -"dlr-logging","Apache Software License" diff --git a/licenses/license_info.no_versions.json b/licenses/license_info.no_versions.json deleted file mode 100644 index 97a2ead..0000000 --- a/licenses/license_info.no_versions.json +++ /dev/null @@ -1,14 +0,0 @@ -[ - { - "License": "MIT License", - "Name": "PyYAML" - }, - { - "License": "MIT License", - "Name": "ansi" - }, - { - "License": "Apache Software License", - "Name": "dlr-logging" - } -] diff --git a/licenses/license_info.no_versions.md b/licenses/license_info.no_versions.md deleted file mode 100644 index 3030408..0000000 --- a/licenses/license_info.no_versions.md +++ /dev/null @@ -1,5 +0,0 @@ -| Name | License | -|-------------|-------------------------| -| PyYAML | MIT License | -| ansi | MIT License | -| dlr-logging | Apache Software License | diff --git a/mkdocs.yml b/mkdocs.yml index a63b117..38ff2df 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + site_name: Logging Base Module repo_name: dlr-logging @@ -67,7 +72,7 @@ extra: link: https://www.dlr.de/en - icon: dlr-ki link: https://www.dlr.de/ki/en - - icon: fontawesome/brands/square-gitlab + - icon: fontawesome/brands/square-github link: https://github.com/DLR-KI/fl-logging-base extra_javascript: diff --git a/pyproject.toml b/pyproject.toml index 45d95ea..833e21c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,8 @@ +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + [project] # This is the name of your project. The first time you publish this # package, this name will be registered for you. It will determine how @@ -17,7 +22,7 @@ name = "dlr-logging" # Required # # For a discussion on single-sourcing the version, see # https://packaging.python.org/guides/single-sourcing-package-version/ -version = "0.0.3.dev0" # Required +version = "0.0.4.dev0" # Required # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: @@ -43,7 +48,7 @@ requires-python = ">=3.7" # This is either text indicating the license for the distribution, or a file # that contains the license # https://packaging.python.org/en/latest/specifications/core-metadata/#license -license = {file = "LICENSE"} +license = {file = "LICENSES/Apache-2.0.txt"} # This field adds keywords for your project which will appear on the # project page. What does your project relate to? @@ -119,6 +124,7 @@ dependencies = [ # Optional # projects. [project.optional-dependencies] # Optional dev = [ + "reuse~=3.0.2", "tox~=4.5.1", ] test = [ @@ -126,6 +132,7 @@ test = [ #"coverage~=7.2.7", "flake8~=6.0.0", "flake8-pyproject~=1.2.3", + "licensecheck", # no version, install latest version "mypy~=1.3.0", #"pytest~=7.4.0", "shellcheck-py~=0.9.0.6", @@ -169,6 +176,7 @@ all = ["dlr-logging[dev,test,stubs,doc]"] # installed, specify them here. packages = ["dlr.ki.logging", "dlr.ki.logging.formatter"] package-data = {"dlr.ki.logging" = ["py.typed"]} +license-files = ["LICENSES/*.txt"] [build-system] # These are the assumed default build requirements from pip: @@ -178,6 +186,16 @@ build-backend = "setuptools.build_meta" ####################################################################################################################### +# licensecheck +# https://github.com/FHPythonUtils/LicenseCheck/blob/master/README.md + +[tool.licensecheck] +using = "PEP631" +#using = "PEP631:dev;test;stubs;doc" +zero = true + +####################################################################################################################### + # flake8 # https://flake8.pycqa.org/en/latest/user/configuration.html diff --git a/scripts/utils.sh b/scripts/utils.sh index e4a1f9a..4c35e55 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -1,4 +1,10 @@ #!/bin/bash + +# SPDX-FileCopyrightText: 2024 Benedikt Franke +# SPDX-FileCopyrightText: 2024 Florian Heinrich +# +# SPDX-License-Identifier: Apache-2.0 + ############################################################################### # Utility functions # ##################### diff --git a/tox.ini b/tox.ini index d165fc3..0fdc50c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,3 +1,8 @@ +; SPDX-FileCopyrightText: 2024 Benedikt Franke +; SPDX-FileCopyrightText: 2024 Florian Heinrich +; +; SPDX-License-Identifier: Apache-2.0 + [tox] envlist = py{37,38,39,310,311} @@ -19,45 +24,3 @@ deps = ;extras = all commands = safety check - -[testenv:licenses] -basepython = python -deps = - pip-licenses - importlib-metadata # not present with py38 - zipp # not present with py38 -;extras = all -commands = - pip-licenses \ - --from=mixed \ - --format=csv \ - --output-file=./licenses/license_info.csv - pip-licenses \ - --from=mixed \ - --format=json \ - --output-file=./licenses/license_info.json - pip-licenses \ - --from=mixed \ - --format=markdown \ - --output-file=./licenses/license_info.md - pip-licenses \ - --from=mixed \ - --format=csv \ - --no-version \ - --output-file=./licenses/license_info.no_versions.csv - pip-licenses \ - --from=mixed \ - --format=json \ - --no-version \ - --output-file=./licenses/license_info.no_versions.json - pip-licenses \ - --from=mixed \ - --format=markdown \ - --no-version \ - --output-file=./licenses/license_info.no_versions.md - pip-licenses \ - --from=mixed \ - --format=plain-vertical \ - --with-license-file \ - --no-license-path \ - --output-file=./licenses/license.txt