diff --git a/VERSION b/VERSION index 5068ab9cf486c379e8a99449cc84bee445d8582c..276223699735b2bc688a5a02462de216da7786b6 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 e985116d31d4599e797c4be04b45bb2794b1fe93..097c81f7bcc32b66d628b431f15892b682df03fc 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 6e0ec59a06fe947a04113fc0e8cd2b7575643e4e..41374567fd191f36a6a4b68be91c18475831bde6 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 b9aa8604e22be177ecd84f6ab6f4421808d30d19..407f2c226ffd8b41eddc009dc0cd31fc6bf230ff 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 cd128d0a43e76624c546d89527b09cd35cc0d319..e4c82cca539630f25f1986a5ed1990bc904888f9 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 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c7abb86702f4d20eb613d96aeaff5be85df2e6b1 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 ae9931caf216243637decd39cab65755e9cf5967..f1082d4c0e83853c60de1cce1b19f3e10a43f0fd 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 b4a02013ae9a1446d5cb8a22c19c7009564659ad..abf2ce70de5d0d2b18f3898968ee7dea46a422bb 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 c20e74a8eac14e3beedc179166e72296d575db2c..2e4e846a84da2c58d09f3df4f7910fb8d28bb243 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 db4fff7cddef8ff8da14629c0e54aeaa8e96ced9..23e91d7ee04702411cd214df81b28ab035e6984d 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