setup.py
branchstable
changeset 5421 8167de96c523
parent 4721 8f63691ccb7f
child 5423 e15abfdcce38
child 5424 8ecbcbff9777
equal deleted inserted replaced
5420:09b50d7e5321 5421:8167de96c523
     1 #!/usr/bin/env python
     1 #!/usr/bin/env python
     2 """Generic Setup script, takes package info from __pkginfo__.py file
       
     3 
       
     4 :organization: Logilab
       
     5 :copyright: 2001-2010 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
       
     6 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     7 :license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
       
     8 """
       
     9 # pylint: disable-msg=W0142,W0403,W0404,W0613,W0622,W0622,W0704,R0904,C0103,E0611
     2 # pylint: disable-msg=W0142,W0403,W0404,W0613,W0622,W0622,W0704,R0904,C0103,E0611
    10 #
     3 #
    11 # This program is free software; you can redistribute it and/or modify it under
     4 # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
    12 # the terms of the GNU General Public License as published by the Free Software
     5 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
    13 # Foundation; either version 2 of the License, or (at your option) any later
       
    14 # version.
       
    15 #
     6 #
    16 # This program is distributed in the hope that it will be useful, but WITHOUT
     7 # This file is part of CubicWeb.
       
     8 #
       
     9 # CubicWeb is free software: you can redistribute it and/or modify it under the
       
    10 # terms of the GNU Lesser General Public License as published by the Free
       
    11 # Software Foundation, either version 2.1 of the License, or (at your option)
       
    12 # any later version.
       
    13 #
       
    14 # logilab-common is distributed in the hope that it will be useful, but WITHOUT
    17 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    15 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    18 # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
    16 # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
       
    17 # details.
    19 #
    18 #
    20 # You should have received a copy of the GNU General Public License along with
    19 # You should have received a copy of the GNU Lesser General Public License along
    21 # this program; if not, write to the Free Software Foundation, Inc.,
    20 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    22 # 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    21 """Generic Setup script, takes package info from __pkginfo__.py file
       
    22 """
    23 
    23 
    24 import os
    24 import os
    25 import sys
    25 import sys
    26 import shutil
    26 import shutil
    27 from distutils.core import setup
    27 from distutils.core import setup