From 7dc6b437bbcbae517c331de148e9f7db40a955ad Mon Sep 17 00:00:00 2001 From: Gaurav Juvekar Date: Sun, 7 Aug 2022 11:22:09 -0700 Subject: [PATCH] Add copyright --- COPYING | 21 +++++++++++++++++++++ src/remote_email_filtering/__init__.py | 2 ++ src/remote_email_filtering/action.py | 2 ++ src/remote_email_filtering/auth.py | 2 ++ src/remote_email_filtering/main.py | 2 ++ src/remote_email_filtering/message.py | 2 ++ src/remote_email_filtering/remote.py | 2 ++ src/remote_email_filtering/types.py | 2 ++ 8 files changed, 35 insertions(+) create mode 100644 COPYING diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..f8ca389 --- /dev/null +++ b/COPYING @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022, Gaurav Juvekar + +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. diff --git a/src/remote_email_filtering/__init__.py b/src/remote_email_filtering/__init__.py index edb6663..3e6575d 100644 --- a/src/remote_email_filtering/__init__.py +++ b/src/remote_email_filtering/__init__.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT __version__ = '0.1.0' from .types import * diff --git a/src/remote_email_filtering/action.py b/src/remote_email_filtering/action.py index 09b5866..a9ef248 100644 --- a/src/remote_email_filtering/action.py +++ b/src/remote_email_filtering/action.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT """ Basic building blocks for doing stuff with a :class:`~remote_email_filtering.message.Message` diff --git a/src/remote_email_filtering/auth.py b/src/remote_email_filtering/auth.py index 8ddcf2e..8f05096 100644 --- a/src/remote_email_filtering/auth.py +++ b/src/remote_email_filtering/auth.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT import base64 diff --git a/src/remote_email_filtering/main.py b/src/remote_email_filtering/main.py index fe8a69c..006896a 100644 --- a/src/remote_email_filtering/main.py +++ b/src/remote_email_filtering/main.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT import datetime import itertools import time diff --git a/src/remote_email_filtering/message.py b/src/remote_email_filtering/message.py index 3b8bf1a..ab87c7c 100644 --- a/src/remote_email_filtering/message.py +++ b/src/remote_email_filtering/message.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT import email import email.header import email.policy diff --git a/src/remote_email_filtering/remote.py b/src/remote_email_filtering/remote.py index 11df53b..755ac83 100644 --- a/src/remote_email_filtering/remote.py +++ b/src/remote_email_filtering/remote.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT import abc import logging import typing diff --git a/src/remote_email_filtering/types.py b/src/remote_email_filtering/types.py index f7e64d0..3ff10ef 100644 --- a/src/remote_email_filtering/types.py +++ b/src/remote_email_filtering/types.py @@ -1,3 +1,5 @@ +# Copyright 2022, Gaurav Juvekar +# SPDX-License-Identifier: MIT import collections import re import typing