From 8ebf454a46a50ae3d6670d0a01858ec8987e3afc Mon Sep 17 00:00:00 2001 From: LtWorf Date: Tue, 22 Mar 2011 16:19:55 +0000 Subject: [PATCH] - Using common installer git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@289 014f5005-505e-4b48-8d0a-63407b615a7c --- setup/python-relational.setup.py | 22 ++++++++++++++++++++-- setup/relational-cli.setup.py | 22 ++++++++++++++++++++-- setup/relational.setup.py | 22 ++++++++++++++++++++-- 3 files changed, 60 insertions(+), 6 deletions(-) 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