From 30290e0a66fdb8c246ea70714bfd08d507d35108 Mon Sep 17 00:00:00 2001 From: Florent Jaillet <florent.jaillet@lis-lab.fr> Date: Wed, 31 Oct 2018 11:13:30 +0100 Subject: [PATCH] Add missing copyright stamps --- VERSION | 2 +- doc/example_oar.py | 40 ++++++++++++++++++ setup.py | 42 +++++++++++++++++++ yafe/__init__.py | 43 +++++++++++++++++++- yafe/base.py | 40 ++++++++++++++++++ yafe/tests/__init__.py | 41 +++++++++++++++++++ yafe/tests/script_for_generate_oar_script.py | 40 ++++++++++++++++++ yafe/tests/test_base.py | 40 ++++++++++++++++++ yafe/tests/test_utils.py | 40 ++++++++++++++++++ yafe/utils.py | 40 ++++++++++++++++++ 10 files changed, 366 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 5068ab9..2762236 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -yafe:1.0.0 +yafe:1.0.1 diff --git a/doc/example_oar.py b/doc/example_oar.py index e985116..097c81f 100644 --- a/doc/example_oar.py +++ b/doc/example_oar.py @@ -1,4 +1,44 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Example experiment to be deployed on a cluster grid with OAR. .. moduleauthor:: Ronan Hamon diff --git a/setup.py b/setup.py index 6e0ec59..4137456 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,46 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### + import os from setuptools import setup, find_packages import sys diff --git a/yafe/__init__.py b/yafe/__init__.py index b9aa860..407f2c2 100644 --- a/yafe/__init__.py +++ b/yafe/__init__.py @@ -1,3 +1,44 @@ +# -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Experiments as combinations of data, problems and solvers. .. moduleauthor:: Ronan Hamon @@ -7,4 +48,4 @@ from .base import Experiment __all__ = ['Experiment'] -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/yafe/base.py b/yafe/base.py index cd128d0..e4c82cc 100644 --- a/yafe/base.py +++ b/yafe/base.py @@ -1,4 +1,44 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Base functions and classes for experiments. .. moduleauthor:: Ronan Hamon diff --git a/yafe/tests/__init__.py b/yafe/tests/__init__.py index e69de29..c7abb86 100644 --- a/yafe/tests/__init__.py +++ b/yafe/tests/__init__.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### diff --git a/yafe/tests/script_for_generate_oar_script.py b/yafe/tests/script_for_generate_oar_script.py index ae9931c..f1082d4 100644 --- a/yafe/tests/script_for_generate_oar_script.py +++ b/yafe/tests/script_for_generate_oar_script.py @@ -1,4 +1,44 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Example script to test yafe.utils.generate_oar_script() .. moduleauthor:: Ronan Hamon diff --git a/yafe/tests/test_base.py b/yafe/tests/test_base.py index b4a0201..abf2ce7 100644 --- a/yafe/tests/test_base.py +++ b/yafe/tests/test_base.py @@ -1,4 +1,44 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Test of the module :module:`yafe.base` .. moduleauthor:: Ronan Hamon diff --git a/yafe/tests/test_utils.py b/yafe/tests/test_utils.py index c20e74a..2e4e846 100644 --- a/yafe/tests/test_utils.py +++ b/yafe/tests/test_utils.py @@ -1,4 +1,44 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Test of the module :module:`yafe.utils` .. moduleauthor:: Ronan Hamon diff --git a/yafe/utils.py b/yafe/utils.py index db4fff7..23e91d7 100644 --- a/yafe/utils.py +++ b/yafe/utils.py @@ -1,4 +1,44 @@ # -*- coding: utf-8 -*- +# ######### COPYRIGHT ######### +# +# Copyright(c) 2018 +# ----------------- +# +# * Laboratoire d'Informatique et Systèmes <http://www.lis-lab.fr/> +# * Université d'Aix-Marseille <http://www.univ-amu.fr/> +# * Centre National de la Recherche Scientifique <http://www.cnrs.fr/> +# * Université de Toulon <http://www.univ-tln.fr/> +# +# Contributors +# ------------ +# +# * Ronan Hamon <firstname.lastname_AT_lis-lab.fr> +# * Valentin Emiya <firstname.lastname_AT_lis-lab.fr> +# * Florent Jaillet <firstname.lastname_AT_lis-lab.fr> +# +# Description +# ----------- +# +# yafe: Yet Another Framework for Experiments. +# +# Licence +# ------- +# This file is part of yafe. +# +# yafe is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# +# ######### COPYRIGHT ######### """Utils classes and functions for yafe. .. moduleauthor:: Ronan Hamon -- GitLab