From 6af3f8c14e2391c9430684f7124ace17dcba5a03 Mon Sep 17 00:00:00 2001 From: rs Date: Fri, 8 Feb 2019 07:47:11 +0000 Subject: [PATCH] Add apache2 license notices --- .gitignore | 7 +++++-- .idea/copyright/apache2.xml | 6 ++++++ .idea/copyright/profiles_settings.xml | 7 +++++++ LICENSE.txt | 29 +++++++++------------------ nipio/backend.py | 13 ++++++++++++ nipio_tests/__init__.py | 13 ++++++++++++ nipio_tests/backend_test.py | 14 +++++++++++++ setup.py | 15 +++++++++++++- 8 files changed, 82 insertions(+), 22 deletions(-) create mode 100644 .idea/copyright/apache2.xml create mode 100644 .idea/copyright/profiles_settings.xml diff --git a/.gitignore b/.gitignore index 76e930c..a443f51 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,11 @@ *.ipr *.iml *.iws -.idea .DS_Store build nip.io.egg-info -dist \ No newline at end of file +dist + +.idea/*.xml +.idea/inspectionProfiles + diff --git a/.idea/copyright/apache2.xml b/.idea/copyright/apache2.xml new file mode 100644 index 0000000..0cae497 --- /dev/null +++ b/.idea/copyright/apache2.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..9224ddd --- /dev/null +++ b/.idea/copyright/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt index 791be1f..83d3846 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,22 +1,13 @@ -This is free and unencumbered software released into the public domain. +Copyright 2019 Exentrique Solutions Ltd -Anyone is free to copy, modify, publish, use, compile, sell, or -distribute this software, either in source code form or as a compiled -binary, for any purpose, commercial or non-commercial, and by any -means. +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 -In jurisdictions that recognize copyright laws, the author or authors -of this software dedicate any and all copyright interest in the -software to the public domain. We make this dedication for the benefit -of the public at large and to the detriment of our heirs and -successors. We intend this dedication to be an overt act of -relinquishment in perpetuity of all present and future rights to this -software under copyright law. + http://www.apache.org/licenses/LICENSE-2.0 -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 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. \ No newline at end of file +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/nipio/backend.py b/nipio/backend.py index 37851c6..7219414 100755 --- a/nipio/backend.py +++ b/nipio/backend.py @@ -1,4 +1,17 @@ #!/usr/bin/python +# Copyright 2019 Exentrique Solutions Ltd +# +# 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 ConfigParser import os diff --git a/nipio_tests/__init__.py b/nipio_tests/__init__.py index e69de29..4ace173 100644 --- a/nipio_tests/__init__.py +++ b/nipio_tests/__init__.py @@ -0,0 +1,13 @@ +# Copyright 2019 Exentrique Solutions Ltd +# +# 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/nipio_tests/backend_test.py b/nipio_tests/backend_test.py index dc1dd04..0843faf 100644 --- a/nipio_tests/backend_test.py +++ b/nipio_tests/backend_test.py @@ -1,3 +1,17 @@ +# Copyright 2019 Exentrique Solutions Ltd +# +# 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 collections import os import sys diff --git a/setup.py b/setup.py index 601eca4..23f4bcb 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,17 @@ -# from distutils.core import setup +# Copyright 2019 Exentrique Solutions Ltd +# +# 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 setup setup(name="nip.io", -- 2.20.1