diff --git a/renderer/parser.py b/renderer/parser.py
index b2c90ef9dbec183e5dedea1c6ec8647ac39ad126..224b192626c193105de6ab3068eb8b9d8acc95f2 100644
--- a/renderer/parser.py
+++ b/renderer/parser.py
@@ -1,8 +1,25 @@
 #!/usr/bin/env python3
+###################################################################################
+# Parser for the test case renderer.
+# This module defines the test case format and implement a parser for the format.
 #
-# This module defines the test case format and implement a
-# parser for such a format.
+# Copyright (C) 2018
+# Luis Araujo <luis.araujo@collabora.co.uk>
 #
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+
+# This library 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
+# Lesser General Public License for more details.
+
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  US
+###################################################################################
 
 import sys
 import yaml
diff --git a/renderer/render-test-case b/renderer/render-test-case
index 8713789c33a9f7bec8ddcec408a5837c31a10150..751d68ea11acaa0755f2b3666d3c18f9b252f6bd 100755
--- a/renderer/render-test-case
+++ b/renderer/render-test-case
@@ -1,7 +1,25 @@
 #!/usr/bin/env python3
-#
+###################################################################################
+# Test case renderer.
 # Create a HTML page from a YAML test case file.
 #
+# Copyright (C) 2018
+# Luis Araujo <luis.araujo@collabora.co.uk>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+
+# This library 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
+# Lesser General Public License for more details.
+
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  US
+###################################################################################
 
 import os
 import sys