diff --git a/setup/python-relational.setup.py b/setup/python-relational.setup.py
index 2756332..1d7cfd5 100644
--- a/setup/python-relational.setup.py
+++ b/setup/python-relational.setup.py
@@ -1,4 +1,22 @@
# -*- coding: utf-8 -*-
-from distutils.core import setup
+# Relational
+# Copyright (C) 2008 Salvo "LtWorf" Tomaselli
+#
+# Relational 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 .
+#
+# author Salvo "LtWorf" Tomaselli
-setup(name='relational', packages=('relational',))
+import installer_common
+
+installer_common.c_setup('relational')
diff --git a/setup/relational-cli.setup.py b/setup/relational-cli.setup.py
index d530ae5..1ef6b60 100644
--- a/setup/relational-cli.setup.py
+++ b/setup/relational-cli.setup.py
@@ -1,4 +1,22 @@
# -*- coding: utf-8 -*-
-from distutils.core import setup
+# Relational
+# Copyright (C) 2008 Salvo "LtWorf" Tomaselli
+#
+# Relational 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 .
+#
+# author Salvo "LtWorf" Tomaselli
-setup(name='relational_readline', packages=('relational_readline',))
+import installer_common
+
+installer_common.c_setup('relational_readline')
diff --git a/setup/relational.setup.py b/setup/relational.setup.py
index f5a6a33..83c7bfb 100644
--- a/setup/relational.setup.py
+++ b/setup/relational.setup.py
@@ -1,4 +1,22 @@
# -*- coding: utf-8 -*-
-from distutils.core import setup
+# Relational
+# Copyright (C) 2008 Salvo "LtWorf" Tomaselli
+#
+# Relational 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 .
+#
+# author Salvo "LtWorf" Tomaselli
-setup(name='relational_gui', packages=('relational_gui',))
+import installer_common
+
+installer_common.c_setup('relational_gui')
\ No newline at end of file