From 5c414e8f406d02541ca96e4f1940d154d28d945d Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Fri, 30 Oct 2020 21:13:34 +0100 Subject: [PATCH] Add licence headers --- calendarweek/calendarweek.py | 15 +++++++++++++++ calendarweek/django.py | 15 +++++++++++++++ calendarweek/util.py | 14 ++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/calendarweek/calendarweek.py b/calendarweek/calendarweek.py index 1a0ceed..264b0c4 100644 --- a/calendarweek/calendarweek.py +++ b/calendarweek/calendarweek.py @@ -1,3 +1,18 @@ +# Copyright 2019, 2020 Dominik George <dominik.george@teckids.org> +# Copyright 2020 Jonathan Weth <wethjo@katharineum.de> +# +# 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. + from __future__ import annotations import calendar diff --git a/calendarweek/django.py b/calendarweek/django.py index fe962d5..d9d72a0 100644 --- a/calendarweek/django.py +++ b/calendarweek/django.py @@ -1,3 +1,18 @@ +# Copyright 2019, 2020 Dominik George <dominik.george@teckids.org> +# Copyright 2020 Jonathan Weth <wethjo@katharineum.de> +# +# 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. + import json import locale from typing import Any, List, Optional, Tuple diff --git a/calendarweek/util.py b/calendarweek/util.py index 913c0f4..4c7cd7a 100644 --- a/calendarweek/util.py +++ b/calendarweek/util.py @@ -1,3 +1,17 @@ +# Copyright 2019, 2020 Dominik George <dominik.george@teckids.org> +# +# 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. + from locale import getpreferredencoding, locale_alias, locale_encoding_alias from typing import Optional -- GitLab