From 119c0d8772f80a7ffd7ee6aa79b0dcd7771759a7 Mon Sep 17 00:00:00 2001 From: Sayan Nandan Date: Wed, 1 May 2024 14:46:51 +0530 Subject: [PATCH] docs: Add license headers --- run_tests.py | 15 +++++++++++++++ src/skytable_py/__init__.py | 15 +++++++++++++++ src/skytable_py/connection.py | 15 +++++++++++++++ tests/__init__.py | 14 ++++++++++++++ tests/test_config.py | 15 +++++++++++++++ 5 files changed, 74 insertions(+) diff --git a/run_tests.py b/run_tests.py index e8e6412..28d407b 100644 --- a/run_tests.py +++ b/run_tests.py @@ -1,3 +1,18 @@ +# Copyright 2023, Sayan Nandan +# +# 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 unittest diff --git a/src/skytable_py/__init__.py b/src/skytable_py/__init__.py index 1048b31..64bfb9e 100644 --- a/src/skytable_py/__init__.py +++ b/src/skytable_py/__init__.py @@ -1 +1,16 @@ +# Copyright 2023, Sayan Nandan +# +# 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 .connection import Config, Connection diff --git a/src/skytable_py/connection.py b/src/skytable_py/connection.py index ba4747a..8422780 100644 --- a/src/skytable_py/connection.py +++ b/src/skytable_py/connection.py @@ -1,3 +1,18 @@ +# Copyright 2023, Sayan Nandan +# +# 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 asyncio from asyncio import StreamReader, StreamWriter diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..ac6ff2e 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2023, Sayan Nandan +# +# 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/tests/test_config.py b/tests/test_config.py index 98130f5..cdaf5c8 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,3 +1,18 @@ +# Copyright 2023, Sayan Nandan +# +# 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 unittest from src.skytable_py import Config