From 9d365ff26ff5674a608109d71ed9b557f4891611 Mon Sep 17 00:00:00 2001 From: eliyahu77 Date: Tue, 23 Aug 2022 17:31:05 +0300 Subject: [PATCH] add copyright Signed-off-by: eliyahu77 --- .github/workflows/CI.yaml | 14 ++++++++++++++ Makefile | 14 ++++++++++++++ clients/__init__.py | 14 ++++++++++++++ clients/logging/__init__.py | 14 ++++++++++++++ clients/logging/formatter/__init__.py | 14 ++++++++++++++ clients/logging/formatter/helpers.py | 14 ++++++++++++++ clients/logging/formatter/human_readable.py | 14 ++++++++++++++ clients/logging/formatter/json.py | 14 ++++++++++++++ core/__init__.py | 14 ++++++++++++++ core/update_manager.py | 14 ++++++++++++++ examples/basic/manofest.py | 14 ++++++++++++++ manof.py | 14 ++++++++++++++ manof/__init__.py | 14 ++++++++++++++ manof/group.py | 14 ++++++++++++++ manof/image.py | 14 ++++++++++++++ manof/target.py | 14 ++++++++++++++ manof/utils/__init__.py | 14 ++++++++++++++ manof/volume.py | 14 ++++++++++++++ tests/__init__.py | 14 ++++++++++++++ tests/integration/__init__.py | 14 ++++++++++++++ tests/integration/cases/__init__.py | 14 ++++++++++++++ tests/integration/cases/basic/__init__.py | 14 ++++++++++++++ .../integration/cases/basic/artifacts/manofest.py | 14 ++++++++++++++ .../integration/cases/basic/test_basic_commands.py | 14 ++++++++++++++ tests/integration/cases/shell_commands/__init__.py | 14 ++++++++++++++ .../cases/shell_commands/artifacts/manofest.py | 14 ++++++++++++++ .../cases/shell_commands/test_shell_commands.py | 14 ++++++++++++++ tests/unit/__init__.py | 14 ++++++++++++++ tests/unit/test_manof.py | 14 ++++++++++++++ tools/flake8_plugin/flake8_igz.py | 14 ++++++++++++++ tools/flake8_plugin/setup.py | 14 ++++++++++++++ 31 files changed, 434 insertions(+) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 42bc4de..b1e3e90 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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. +# name: CI on: diff --git a/Makefile b/Makefile index d0c2037..13948dd 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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. +# VENV_PYTHON = ./venv/bin/python .PHONY: all diff --git a/clients/__init__.py b/clients/__init__.py index e69de29..4c56868 100644 --- a/clients/__init__.py +++ b/clients/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/clients/logging/__init__.py b/clients/logging/__init__.py index 2700090..4479994 100644 --- a/clients/logging/__init__.py +++ b/clients/logging/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 logging import logging.handlers import os diff --git a/clients/logging/formatter/__init__.py b/clients/logging/formatter/__init__.py index e69de29..4c56868 100644 --- a/clients/logging/formatter/__init__.py +++ b/clients/logging/formatter/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/clients/logging/formatter/helpers.py b/clients/logging/formatter/helpers.py index bb3c1fe..7198ecc 100644 --- a/clients/logging/formatter/helpers.py +++ b/clients/logging/formatter/helpers.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 os import errno import simplejson diff --git a/clients/logging/formatter/human_readable.py b/clients/logging/formatter/human_readable.py index 239b76c..81d7f7f 100644 --- a/clients/logging/formatter/human_readable.py +++ b/clients/logging/formatter/human_readable.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 datetime import logging import textwrap diff --git a/clients/logging/formatter/json.py b/clients/logging/formatter/json.py index 443c0a8..52af501 100644 --- a/clients/logging/formatter/json.py +++ b/clients/logging/formatter/json.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 datetime import logging diff --git a/core/__init__.py b/core/__init__.py index f0c8278..f9eb5fe 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 argparse import sys import inspect diff --git a/core/update_manager.py b/core/update_manager.py index 91f919f..b57e6e6 100644 --- a/core/update_manager.py +++ b/core/update_manager.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 os import sys diff --git a/examples/basic/manofest.py b/examples/basic/manofest.py index f04dcb6..5135437 100644 --- a/examples/basic/manofest.py +++ b/examples/basic/manofest.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 datetime import pytz diff --git a/manof.py b/manof.py index 19e2e37..2e6c80c 100644 --- a/manof.py +++ b/manof.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 argparse import sys diff --git a/manof/__init__.py b/manof/__init__.py index a009183..fd37ad5 100644 --- a/manof/__init__.py +++ b/manof/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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. +# # to allow manofests to use manof.Image and such rather than manof.image.Image from .target import Target from .image import Image diff --git a/manof/group.py b/manof/group.py index e136006..59903cd 100644 --- a/manof/group.py +++ b/manof/group.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 manof diff --git a/manof/image.py b/manof/image.py index d37d850..37a6b52 100644 --- a/manof/image.py +++ b/manof/image.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 os import sys import pipes diff --git a/manof/target.py b/manof/target.py index 792f411..70f6759 100644 --- a/manof/target.py +++ b/manof/target.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 inflection import types import os diff --git a/manof/utils/__init__.py b/manof/utils/__init__.py index 82a0b2d..f025012 100644 --- a/manof/utils/__init__.py +++ b/manof/utils/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 os import sys import io diff --git a/manof/volume.py b/manof/volume.py index 0957181..96dd8fe 100644 --- a/manof/volume.py +++ b/manof/volume.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 manof from twisted.internet import defer diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..4c56868 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/integration/__init__.py b/tests/integration/__init__.py index 3a0ab81..61f33f2 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 os import mock import sys diff --git a/tests/integration/cases/__init__.py b/tests/integration/cases/__init__.py index e69de29..4c56868 100644 --- a/tests/integration/cases/__init__.py +++ b/tests/integration/cases/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/integration/cases/basic/__init__.py b/tests/integration/cases/basic/__init__.py index e69de29..4c56868 100644 --- a/tests/integration/cases/basic/__init__.py +++ b/tests/integration/cases/basic/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/integration/cases/basic/artifacts/manofest.py b/tests/integration/cases/basic/artifacts/manofest.py index 1ce237f..696815f 100644 --- a/tests/integration/cases/basic/artifacts/manofest.py +++ b/tests/integration/cases/basic/artifacts/manofest.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 manof diff --git a/tests/integration/cases/basic/test_basic_commands.py b/tests/integration/cases/basic/test_basic_commands.py index 1af5231..0b3a70f 100644 --- a/tests/integration/cases/basic/test_basic_commands.py +++ b/tests/integration/cases/basic/test_basic_commands.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 twisted.internet import defer import manof.utils diff --git a/tests/integration/cases/shell_commands/__init__.py b/tests/integration/cases/shell_commands/__init__.py index e69de29..4c56868 100644 --- a/tests/integration/cases/shell_commands/__init__.py +++ b/tests/integration/cases/shell_commands/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/integration/cases/shell_commands/artifacts/manofest.py b/tests/integration/cases/shell_commands/artifacts/manofest.py index e85534a..17e26f0 100644 --- a/tests/integration/cases/shell_commands/artifacts/manofest.py +++ b/tests/integration/cases/shell_commands/artifacts/manofest.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 manof diff --git a/tests/integration/cases/shell_commands/test_shell_commands.py b/tests/integration/cases/shell_commands/test_shell_commands.py index 840d248..426ffa7 100644 --- a/tests/integration/cases/shell_commands/test_shell_commands.py +++ b/tests/integration/cases/shell_commands/test_shell_commands.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 simplejson from twisted.internet import defer diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index e69de29..4c56868 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -0,0 +1,14 @@ +# Copyright 2018 Iguazio +# +# 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/unit/test_manof.py b/tests/unit/test_manof.py index 6ca468a..de3a40a 100644 --- a/tests/unit/test_manof.py +++ b/tests/unit/test_manof.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 os import mock diff --git a/tools/flake8_plugin/flake8_igz.py b/tools/flake8_plugin/flake8_igz.py index d739392..24ddd09 100644 --- a/tools/flake8_plugin/flake8_igz.py +++ b/tools/flake8_plugin/flake8_igz.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 inflection import token import re diff --git a/tools/flake8_plugin/setup.py b/tools/flake8_plugin/setup.py index 8992eff..b38eb53 100644 --- a/tools/flake8_plugin/setup.py +++ b/tools/flake8_plugin/setup.py @@ -1,3 +1,17 @@ +# Copyright 2018 Iguazio +# +# 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 with_statement import setuptools