1 #!/usr/bin/env python |
1 #!/usr/bin/env python |
2 """ |
2 """Generic Setup script, takes package info from __pkginfo__.py file |
3 |
3 |
4 :organization: Logilab |
4 :organization: Logilab |
5 :copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
5 :copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
6 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
6 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
7 :license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
7 :license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
8 """ |
8 """ |
9 # pylint: disable-msg=W0142,W0403,W0404,W0613,W0622,W0622,W0704,R0904,C0103,E0611 |
9 # pylint: disable-msg=W0142,W0403,W0404,W0613,W0622,W0622,W0704,R0904,C0103,E0611 |
10 # |
|
11 # Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE). |
|
12 # http://www.logilab.fr/ -- mailto:contact@logilab.fr |
|
13 # |
10 # |
14 # This program is free software; you can redistribute it and/or modify it under |
11 # This program is free software; you can redistribute it and/or modify it under |
15 # the terms of the GNU General Public License as published by the Free Software |
12 # the terms of the GNU General Public License as published by the Free Software |
16 # Foundation; either version 2 of the License, or (at your option) any later |
13 # Foundation; either version 2 of the License, or (at your option) any later |
17 # version. |
14 # version. |
21 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
18 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
22 # |
19 # |
23 # You should have received a copy of the GNU General Public License along with |
20 # You should have received a copy of the GNU General Public License along with |
24 # this program; if not, write to the Free Software Foundation, Inc., |
21 # this program; if not, write to the Free Software Foundation, Inc., |
25 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
22 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
26 """ Generic Setup script, takes package info from __pkginfo__.py file """ |
|
27 |
23 |
28 import os |
24 import os |
29 import sys |
25 import sys |
30 import shutil |
26 import shutil |
31 from distutils.core import setup |
27 from distutils.core import setup |