From 5569b9380f137b7c1892df0797c5a257970e4cef Mon Sep 17 00:00:00 2001
From: Axel von Arnim <axel.vonarnim@fortiss.org>
Date: Wed, 12 Jul 2017 14:53:57 +0200
Subject: [PATCH] [NRRPLT-5094] Add funding mention

Change-Id: I5841d1f46fd9576402153e5ef8a7b3fcbccaf9b9
---
 .gitignore                                                   | 1 +
 .../hbp_nrp_music_interface/bibi/bibi_music_config.py        | 5 +++++
 .../hbp_nrp_music_interface/cle/MUSICBrainLoader.py          | 5 +++++
 .../cle/MUSICPyNNCommunicationAdapter.py                     | 5 +++++
 .../hbp_nrp_music_interface/cle/MUSICPyNNControlAdapter.py   | 5 +++++
 .../hbp_nrp_music_interface/launch/MUSICBrainProcess.py      | 5 +++++
 .../hbp_nrp_music_interface/launch/MUSICLauncher.py          | 5 +++++
 .../hbp_nrp_music_interface/launch/MUSICMPILauncher.py       | 5 +++++
 .../hbp_nrp_music_interface/launch/host/LocalLauncher.py     | 5 +++++
 .../hbp_nrp_music_interface/launch/host/LuganoLauncher.py    | 5 +++++
 .../tests/bibi/test_bibi_music_config.py                     | 5 +++++
 .../hbp_nrp_music_interface/tests/cle/test_brain_loader.py   | 5 +++++
 .../tests/cle/test_communication_adapter.py                  | 5 +++++
 .../tests/cle/test_control_adapter.py                        | 5 +++++
 .../tests/launch/host/test_interface.py                      | 5 +++++
 .../hbp_nrp_music_interface/tests/launch/host/test_local.py  | 5 +++++
 .../hbp_nrp_music_interface/tests/launch/host/test_lugano.py | 5 +++++
 .../tests/launch/test_mpi_launcher.py                        | 5 +++++
 .../tests/launch/test_music_launcher.py                      | 5 +++++
 hbp_nrp_music_xml/hbp_nrp_music_xml/config/music_config.py   | 5 +++++
 hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/cell_types.py       | 5 +++++
 .../hbp_nrp_music_xml/pynn/connector_factory.py              | 5 +++++
 hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/factory.py          | 5 +++++
 hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/utils.py            | 5 +++++
 hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/xml_factory.py      | 5 +++++
 .../hbp_nrp_music_xml/schema/generated/music_xml.py          | 5 +++++
 .../hbp_nrp_music_xml/tests/config/test_music_config.py      | 5 +++++
 .../hbp_nrp_music_xml/tests/pynn/test_factory.py             | 5 +++++
 .../hbp_nrp_music_xml/tests/pynn/test_xml_factory.py         | 5 +++++
 29 files changed, 141 insertions(+)

diff --git a/.gitignore b/.gitignore
index e5aec11..42b783f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@ coverage.xml
 .project
 .pydevproject
 user_makefile
+dist
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/bibi/bibi_music_config.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/bibi/bibi_music_config.py
index 0660969..e910778 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/bibi/bibi_music_config.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/bibi/bibi_music_config.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICBrainLoader.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICBrainLoader.py
index 51e4a66..7829aaf 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICBrainLoader.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICBrainLoader.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNCommunicationAdapter.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNCommunicationAdapter.py
index 1060228..c463006 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNCommunicationAdapter.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNCommunicationAdapter.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNControlAdapter.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNControlAdapter.py
index 76d1ff9..955e4f6 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNControlAdapter.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/cle/MUSICPyNNControlAdapter.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICBrainProcess.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICBrainProcess.py
index fdbc75c..7603432 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICBrainProcess.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICBrainProcess.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICLauncher.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICLauncher.py
index ae97f52..4714ac8 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICLauncher.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICLauncher.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICMPILauncher.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICMPILauncher.py
index 0843afb..0258084 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICMPILauncher.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/MUSICMPILauncher.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LocalLauncher.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LocalLauncher.py
index eb721b0..93ca47e 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LocalLauncher.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LocalLauncher.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LuganoLauncher.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LuganoLauncher.py
index 2d6da15..86e6032 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LuganoLauncher.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/launch/host/LuganoLauncher.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/bibi/test_bibi_music_config.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/bibi/test_bibi_music_config.py
index 496131c..3d30dd7 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/bibi/test_bibi_music_config.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/bibi/test_bibi_music_config.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_brain_loader.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_brain_loader.py
index 71a3152..65b567a 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_brain_loader.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_brain_loader.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_communication_adapter.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_communication_adapter.py
index f68f898..b6aedc9 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_communication_adapter.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_communication_adapter.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_control_adapter.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_control_adapter.py
index c3bf1a0..4dcfa2a 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_control_adapter.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/cle/test_control_adapter.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_interface.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_interface.py
index bea9729..3bc6a0f 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_interface.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_interface.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_local.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_local.py
index a38aa58..0d20836 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_local.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_local.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_lugano.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_lugano.py
index f673a13..c548b35 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_lugano.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/host/test_lugano.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_mpi_launcher.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_mpi_launcher.py
index 55a4925..1f477e5 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_mpi_launcher.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_mpi_launcher.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_music_launcher.py b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_music_launcher.py
index 68e0ce0..a051d9a 100644
--- a/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_music_launcher.py
+++ b/hbp_nrp_music_interface/hbp_nrp_music_interface/tests/launch/test_music_launcher.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/config/music_config.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/config/music_config.py
index a958487..a77db57 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/config/music_config.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/config/music_config.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/cell_types.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/cell_types.py
index cd3a72d..3af30bd 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/cell_types.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/cell_types.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/connector_factory.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/connector_factory.py
index 27a6039..cb4f47c 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/connector_factory.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/connector_factory.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/factory.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/factory.py
index 88176e5..080e941 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/factory.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/factory.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/utils.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/utils.py
index 755a1fa..5999fcc 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/utils.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/utils.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/xml_factory.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/xml_factory.py
index f7e1408..340c181 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/xml_factory.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/pynn/xml_factory.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/schema/generated/music_xml.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/schema/generated/music_xml.py
index 75307a7..b5c25e0 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/schema/generated/music_xml.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/schema/generated/music_xml.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/config/test_music_config.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/config/test_music_config.py
index 29b4867..67d9ca1 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/config/test_music_config.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/config/test_music_config.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_factory.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_factory.py
index ddb7d93..76b3464 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_factory.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_factory.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_xml_factory.py b/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_xml_factory.py
index baa6e1a..8c70740 100644
--- a/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_xml_factory.py
+++ b/hbp_nrp_music_xml/hbp_nrp_music_xml/tests/pynn/test_xml_factory.py
@@ -1,6 +1,11 @@
 # ---LICENSE-BEGIN - DO NOT CHANGE OR MOVE THIS HEADER
 # This file is part of the Neurorobotics Platform software
 # Copyright (C) 2014,2015,2016,2017 Human Brain Project
+# https://www.humanbrainproject.eu
+#
+# The Human Brain Project is a European Commission funded project
+# in the frame of the Horizon2020 FET Flagship plan.
+# http://ec.europa.eu/programmes/horizon2020/en/h2020-section/fet-flagships
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
-- 
GitLab