From 614c005aded38616ed01d7b40d980157c6ffaa52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20D=C4=85browski?= Date: Fri, 13 Sep 2024 12:06:03 +0200 Subject: [PATCH] Add copyright notices MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kacper DÄ…browski --- .../rai_nomad/rai_nomad/__init__.py | 14 ++++++++++++++ src/rai_extensions/rai_nomad/rai_nomad/nomad.py | 15 +++++++++++++++ src/rai_extensions/rai_nomad/setup.py | 15 +++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/src/rai_extensions/rai_nomad/rai_nomad/__init__.py b/src/rai_extensions/rai_nomad/rai_nomad/__init__.py index e69de29bb..758400027 100644 --- a/src/rai_extensions/rai_nomad/rai_nomad/__init__.py +++ b/src/rai_extensions/rai_nomad/rai_nomad/__init__.py @@ -0,0 +1,14 @@ +# Copyright (C) 2024 Robotec.AI +# +# 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. +# \ No newline at end of file diff --git a/src/rai_extensions/rai_nomad/rai_nomad/nomad.py b/src/rai_extensions/rai_nomad/rai_nomad/nomad.py index 5dcbaeb91..162c15560 100644 --- a/src/rai_extensions/rai_nomad/rai_nomad/nomad.py +++ b/src/rai_extensions/rai_nomad/rai_nomad/nomad.py @@ -1,3 +1,18 @@ +# Copyright (C) 2024 Robotec.AI +# +# 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 os import time diff --git a/src/rai_extensions/rai_nomad/setup.py b/src/rai_extensions/rai_nomad/setup.py index 45dd1df9f..f750cab99 100644 --- a/src/rai_extensions/rai_nomad/setup.py +++ b/src/rai_extensions/rai_nomad/setup.py @@ -1,3 +1,18 @@ +# Copyright (C) 2024 Robotec.AI +# +# 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 setuptools import find_packages, setup package_name = 'rai_nomad'