From f146e1fa519191ec16d771c162c6ae519daa9c9e Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti Date: Mon, 29 Feb 2016 10:31:20 +0100 Subject: [PATCH 1/3] [beat] open source release of the beat.cmdline package --- README.rst | 22 ++++++++++++++++++++++ beat/__init__.py | 25 +++++++++++++++++++++++++ beat/cmdline/algorithms.py | 25 +++++++++++++++++++++++++ beat/cmdline/cache.py | 25 +++++++++++++++++++++++++ beat/cmdline/common.py | 25 +++++++++++++++++++++++++ beat/cmdline/config.py | 25 +++++++++++++++++++++++++ beat/cmdline/databases.py | 25 +++++++++++++++++++++++++ beat/cmdline/dataformats.py | 25 +++++++++++++++++++++++++ beat/cmdline/experiments.py | 25 +++++++++++++++++++++++++ beat/cmdline/libraries.py | 25 +++++++++++++++++++++++++ beat/cmdline/plotters.py | 25 +++++++++++++++++++++++++ beat/cmdline/scripts/beat.py | 25 +++++++++++++++++++++++++ beat/cmdline/status.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/__init__.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_algorithms.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_cache.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_config.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_databases.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_dataformats.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_experiments.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_shortcuts.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_status.py | 25 +++++++++++++++++++++++++ beat/cmdline/test/test_toolchains.py | 25 +++++++++++++++++++++++++ beat/cmdline/toolchains.py | 25 +++++++++++++++++++++++++ beat/cmdline/version.py | 25 +++++++++++++++++++++++++ beat/cmdline/webapi.py | 25 +++++++++++++++++++++++++ bootstrap-buildout.py | 25 +++++++++++++++++++++++++ doc/algorithms.rst | 22 ++++++++++++++++++++++ doc/conf.py | 25 +++++++++++++++++++++++++ doc/configuration.rst | 22 ++++++++++++++++++++++ doc/databases.rst | 22 ++++++++++++++++++++++ doc/dataformats.rst | 22 ++++++++++++++++++++++ doc/experiments.rst | 22 ++++++++++++++++++++++ doc/index.rst | 22 ++++++++++++++++++++++ doc/introduction.rst | 22 ++++++++++++++++++++++ doc/libraries.rst | 22 ++++++++++++++++++++++ doc/toolchains.rst | 22 ++++++++++++++++++++++ setup.py | 25 +++++++++++++++++++++++++ 38 files changed, 920 insertions(+) diff --git a/README.rst b/README.rst index ca57d97..fa40437 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + ============================================ Biometrics Evaluation and Testing Platform ============================================ diff --git a/beat/__init__.py b/beat/__init__.py index 60381ea..fc8a7ad 100644 --- a/beat/__init__.py +++ b/beat/__init__.py @@ -1,2 +1,27 @@ + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + #see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages __import__('pkg_resources').declare_namespace(__name__) diff --git a/beat/cmdline/algorithms.py b/beat/cmdline/algorithms.py index abe7b0d..7b36f41 100644 --- a/beat/cmdline/algorithms.py +++ b/beat/cmdline/algorithms.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Wed 4 Feb 18:54:47 2015 CET diff --git a/beat/cmdline/cache.py b/beat/cmdline/cache.py index 5f4f44b..1a19afd 100644 --- a/beat/cmdline/cache.py +++ b/beat/cmdline/cache.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Sat 14 Feb 2015 07:37:01 CET diff --git a/beat/cmdline/common.py b/beat/cmdline/common.py index 07a6258..4b20281 100644 --- a/beat/cmdline/common.py +++ b/beat/cmdline/common.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Sat 7 Mar 2015 20:00:44 CET diff --git a/beat/cmdline/config.py b/beat/cmdline/config.py index 545844b..06337c3 100644 --- a/beat/cmdline/config.py +++ b/beat/cmdline/config.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Sat 14 Feb 2015 07:37:01 CET diff --git a/beat/cmdline/databases.py b/beat/cmdline/databases.py index 9e55391..e121e34 100644 --- a/beat/cmdline/databases.py +++ b/beat/cmdline/databases.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Sat 31 Jan 2015 06:58:34 CET diff --git a/beat/cmdline/dataformats.py b/beat/cmdline/dataformats.py index 125cf9d..8773495 100644 --- a/beat/cmdline/dataformats.py +++ b/beat/cmdline/dataformats.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Wed 4 Feb 18:54:47 2015 CET diff --git a/beat/cmdline/experiments.py b/beat/cmdline/experiments.py index 32c92cc..3d286f1 100644 --- a/beat/cmdline/experiments.py +++ b/beat/cmdline/experiments.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Wed 4 Feb 18:54:47 2015 CET diff --git a/beat/cmdline/libraries.py b/beat/cmdline/libraries.py index 3fcd048..3a2affd 100644 --- a/beat/cmdline/libraries.py +++ b/beat/cmdline/libraries.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Thu 26 Mar 12:21:05 2015 CET diff --git a/beat/cmdline/plotters.py b/beat/cmdline/plotters.py index 3262909..a468a4b 100644 --- a/beat/cmdline/plotters.py +++ b/beat/cmdline/plotters.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Wed 29 Apr 2015 16:35:25 CEST diff --git a/beat/cmdline/scripts/beat.py b/beat/cmdline/scripts/beat.py index 2ff678e..3c5fd9d 100644 --- a/beat/cmdline/scripts/beat.py +++ b/beat/cmdline/scripts/beat.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Fri 27 Mar 09:32:19 2015 CET diff --git a/beat/cmdline/status.py b/beat/cmdline/status.py index bc1363d..c0f8b80 100644 --- a/beat/cmdline/status.py +++ b/beat/cmdline/status.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Sat 7 Feb 2015 10:30:23 CET diff --git a/beat/cmdline/test/__init__.py b/beat/cmdline/test/__init__.py index 61850a2..be24532 100644 --- a/beat/cmdline/test/__init__.py +++ b/beat/cmdline/test/__init__.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Wed 11 Mar 09:55:17 2015 CET diff --git a/beat/cmdline/test/test_algorithms.py b/beat/cmdline/test/test_algorithms.py index d59f318..fe302cc 100644 --- a/beat/cmdline/test/test_algorithms.py +++ b/beat/cmdline/test/test_algorithms.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Wed 4 Feb 21:53:27 2015 CET diff --git a/beat/cmdline/test/test_cache.py b/beat/cmdline/test/test_cache.py index 1177d45..94e9116 100644 --- a/beat/cmdline/test/test_cache.py +++ b/beat/cmdline/test/test_cache.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Fri 27 Mar 13:01:02 2015 CET diff --git a/beat/cmdline/test/test_config.py b/beat/cmdline/test/test_config.py index c690e3d..425b594 100644 --- a/beat/cmdline/test/test_config.py +++ b/beat/cmdline/test/test_config.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Fri 27 Mar 13:01:02 2015 CET diff --git a/beat/cmdline/test/test_databases.py b/beat/cmdline/test/test_databases.py index 1c5c9e0..4471f13 100644 --- a/beat/cmdline/test/test_databases.py +++ b/beat/cmdline/test/test_databases.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Wed 4 Feb 21:50:56 2015 CET diff --git a/beat/cmdline/test/test_dataformats.py b/beat/cmdline/test/test_dataformats.py index 4b62f8b..48d1e65 100644 --- a/beat/cmdline/test/test_dataformats.py +++ b/beat/cmdline/test/test_dataformats.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Wed 4 Feb 21:53:27 2015 CET diff --git a/beat/cmdline/test/test_experiments.py b/beat/cmdline/test/test_experiments.py index 988f536..2f6c4a0 100644 --- a/beat/cmdline/test/test_experiments.py +++ b/beat/cmdline/test/test_experiments.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Fri 13 Mar 08:17:04 2015 CET diff --git a/beat/cmdline/test/test_shortcuts.py b/beat/cmdline/test/test_shortcuts.py index 8881c58..aad65d3 100644 --- a/beat/cmdline/test/test_shortcuts.py +++ b/beat/cmdline/test/test_shortcuts.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Laurent El-Shafey # Andre Anjos # Wed 19 Nov 2014 17:40:25 CET diff --git a/beat/cmdline/test/test_status.py b/beat/cmdline/test/test_status.py index 6993180..24445a1 100644 --- a/beat/cmdline/test/test_status.py +++ b/beat/cmdline/test/test_status.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Mon 9 Feb 13:48:39 2015 CET diff --git a/beat/cmdline/test/test_toolchains.py b/beat/cmdline/test/test_toolchains.py index a56a908..60f3a25 100644 --- a/beat/cmdline/test/test_toolchains.py +++ b/beat/cmdline/test/test_toolchains.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Andre Anjos # Fri 13 Mar 08:17:04 2015 CET diff --git a/beat/cmdline/toolchains.py b/beat/cmdline/toolchains.py index ee052df..c1d6928 100644 --- a/beat/cmdline/toolchains.py +++ b/beat/cmdline/toolchains.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Wed 4 Feb 18:54:47 2015 CET diff --git a/beat/cmdline/version.py b/beat/cmdline/version.py index d940098..852d196 100644 --- a/beat/cmdline/version.py +++ b/beat/cmdline/version.py @@ -1,4 +1,29 @@ #!/usr/bin/env python + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # vim: set fileencoding=utf-8 : # Andre Anjos # Fri 22 Feb 2013 15:59:16 CET diff --git a/beat/cmdline/webapi.py b/beat/cmdline/webapi.py index 56e9ef8..d9eaf95 100644 --- a/beat/cmdline/webapi.py +++ b/beat/cmdline/webapi.py @@ -1,5 +1,30 @@ #!/usr/bin/env python # encoding: utf-8 + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # Philip Abbet # Andre Anjos # Sat 7 Feb 2015 10:22:29 CET diff --git a/bootstrap-buildout.py b/bootstrap-buildout.py index a629566..de1bd14 100644 --- a/bootstrap-buildout.py +++ b/bootstrap-buildout.py @@ -1,3 +1,28 @@ + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + ############################################################################## # # Copyright (c) 2006 Zope Foundation and Contributors. diff --git a/doc/algorithms.rst b/doc/algorithms.rst index 130da0d..6c4df2e 100644 --- a/doc/algorithms.rst +++ b/doc/algorithms.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + Algorithms ---------- diff --git a/doc/conf.py b/doc/conf.py index 1598fa4..d4395b1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,4 +1,29 @@ #!/usr/bin/env python + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # vim: set fileencoding=utf-8 : # Andre Anjos # Fri 6 Feb 11:35:03 2015 CET diff --git a/doc/configuration.rst b/doc/configuration.rst index 75232b6..0fdec8a 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + .. _beat-cmdline-configuration: Configuration diff --git a/doc/databases.rst b/doc/databases.rst index e59f6fa..de45b56 100644 --- a/doc/databases.rst +++ b/doc/databases.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + Databases --------- diff --git a/doc/dataformats.rst b/doc/dataformats.rst index 3dc9f0d..477407b 100644 --- a/doc/dataformats.rst +++ b/doc/dataformats.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + Dataformats ----------- diff --git a/doc/experiments.rst b/doc/experiments.rst index e7e28be..51adc93 100644 --- a/doc/experiments.rst +++ b/doc/experiments.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + .. _beat-core-experiments-cmdline: Experiments diff --git a/doc/index.rst b/doc/index.rst index 0869ab2..5dc860a 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + ======================== BEAT Command-line Client ======================== diff --git a/doc/introduction.rst b/doc/introduction.rst index 3c99f59..5717e33 100644 --- a/doc/introduction.rst +++ b/doc/introduction.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + Introduction ============ diff --git a/doc/libraries.rst b/doc/libraries.rst index 3fbdbec..15b5ac9 100644 --- a/doc/libraries.rst +++ b/doc/libraries.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + Libraries --------- diff --git a/doc/toolchains.rst b/doc/toolchains.rst index 7f446cf..00f3c3a 100644 --- a/doc/toolchains.rst +++ b/doc/toolchains.rst @@ -1,3 +1,25 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.cmdline module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + + Toolchains ---------- diff --git a/setup.py b/setup.py index 8096b34..7e3537c 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,29 @@ #!/usr/bin/env python + +############################################################################### +# # +# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ # +# Contact: beat.support@idiap.ch # +# # +# This file is part of the beat.cmdline module of the BEAT platform. # +# # +# Commercial License Usage # +# Licensees holding valid commercial BEAT licenses may use this file in # +# accordance with the terms contained in a written agreement between you # +# and Idiap. For further information contact tto@idiap.ch # +# # +# Alternatively, this file may be used under the terms of the GNU Affero # +# Public License version 3 as published by the Free Software and appearing # +# in the file LICENSE.AGPL included in the packaging of this file. # +# The BEAT platform 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. # +# # +# You should have received a copy of the GNU Affero Public License along # +# with the BEAT platform. If not, see http://www.gnu.org/licenses/. # +# # +############################################################################### + # vim: set fileencoding=utf-8 : # Andre Anjos # Mon 16 Apr 08:18:08 2012 CEST -- GitLab From 1560aac5a91d0baeb8f81c572adeeee4b339e645 Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti Date: Mon, 29 Feb 2016 12:04:43 +0100 Subject: [PATCH 2/3] Updated setup.py with proper url link --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7e3537c..2b4e9b8 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( name='beat.cmdline', version='0.1.7', description='Biometrics Evaluation and Testing Platform (Command-Line Client)', - url='http://gitlab.idiap.ch/biometric/beat.cmdline', + url='https://gitlab.idiap.ch/beat/beat.cmdline', license='AGPLv3', author='Idiap Research Institute', author_email='beat.support@idiap.ch', -- GitLab From 84face59acfb6db8342d2a006d101cfa5b260482 Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti Date: Mon, 29 Feb 2016 12:05:09 +0100 Subject: [PATCH 3/3] Added AUTHORS.rst file --- AUTHORS.rst | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 AUTHORS.rst diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..6022280 --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,31 @@ + +.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ .. +.. Contact: beat.support@idiap.ch .. +.. .. +.. This file is part of the beat.web module of the BEAT platform. .. +.. .. +.. Commercial License Usage .. +.. Licensees holding valid commercial BEAT licenses may use this file in .. +.. accordance with the terms contained in a written agreement between you .. +.. and Idiap. For further information contact tto@idiap.ch .. +.. .. +.. Alternatively, this file may be used under the terms of the GNU Affero .. +.. Public License version 3 as published by the Free Software and appearing .. +.. in the file LICENSE.AGPL included in the packaging of this file. .. +.. The BEAT platform 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. .. +.. .. +.. You should have received a copy of the GNU Affero Public License along .. +.. with the BEAT platform. If not, see http://www.gnu.org/licenses/. .. + +========================================================== + Authors of the Biometrics Evaluation and Testing Platform +========================================================== + +Andre Anjos +Flavio Tarsetti +Laurent El-Shafey +Philip Abbet +Samuel Gaist +Sebastien Marcel -- GitLab