update copyright notice

This commit is contained in:
sebthom
2023-10-15 18:00:45 +02:00
parent 4bd466b770
commit 4acf32d3dd
15 changed files with 35 additions and 19 deletions

View File

@@ -1,5 +1,6 @@
# Copyright (C) 2022 Sebastian Thomschke and contributors # SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
# #
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions # https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions
name: Build name: Build

View File

@@ -1,7 +1,8 @@
# Copyright (C) 2022 Sebastian Thomschke and contributors # SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
# #
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
name: Update Python Dependencies name: Update Python Dependencies
on: on:

View File

@@ -1,8 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# # SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
# Copyright (C) 2022 Sebastian Thomschke and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
# # SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
set -eu set -eu

View File

@@ -3,8 +3,9 @@
# see https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#syntax # see https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#syntax
# see https://docs.docker.com/engine/reference/builder/#syntax # see https://docs.docker.com/engine/reference/builder/#syntax
# #
# Copyright (C) 2022 Sebastian Thomschke and contributors # SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
# #
###################### ######################

View File

@@ -1,8 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# # SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
# Copyright (C) 2022 Sebastian Thomschke and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later # SPDX-License-Identifier: AGPL-3.0-or-later
# # SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
set -e -u set -e -u

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import atexit, copy, getopt, importlib.metadata, json, logging, os, re, signal, shutil, sys, textwrap, time, urllib import atexit, copy, getopt, importlib.metadata, json, logging, os, re, signal, shutil, sys, textwrap, time, urllib
from collections.abc import Iterable from collections.abc import Iterable

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import sys import sys
import kleinanzeigen_bot import kleinanzeigen_bot

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import json import json
from decimal import DecimalException from decimal import DecimalException

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import logging, os, shutil, time import logging, os, shutil, time
from collections.abc import Callable, Iterable from collections.abc import Callable, Iterable

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import copy, decimal, json, logging, os, re, secrets, sys, traceback, time import copy, decimal, json, logging, os, re, secrets, sys, traceback, time
from importlib.resources import read_text as get_resource_as_string from importlib.resources import read_text as get_resource_as_string

View File

@@ -1,7 +1,8 @@
# -*- mode: python ; coding: utf-8 -*- # -*- mode: python ; coding: utf-8 -*-
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
PyInstaller config file, see https://pyinstaller.readthedocs.io/en/stable/spec-files.html PyInstaller config file, see https://pyinstaller.readthedocs.io/en/stable/spec-files.html
""" """

View File

@@ -1,4 +1,10 @@
# https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/ # https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
#
# SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
#
[build-system] [build-system]
requires = ["pdm-pep517"] requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api" build-backend = "pdm.pep517.api"

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import logging import logging
from typing import Final from typing import Final

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import pytest import pytest

View File

@@ -1,6 +1,7 @@
""" """
Copyright (C) 2022 Sebastian Thomschke and contributors SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
SPDX-License-Identifier: AGPL-3.0-or-later SPDX-License-Identifier: AGPL-3.0-or-later
SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
""" """
import os, sys, time import os, sys, time
import pytest import pytest