Show
Ignore:
Timestamp:
12/12/07 09:44:46 (12 months ago)
Author:
asterix
Message:

merge diff from trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/pep/setup_win32.py

    r7693 r9123  
    11## setup_win32.py (run me as python setup_win32.py py2exe -O2) 
    22## 
    3 ## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org> 
     3## Copyright (C) 2003-2007 Yann Leboulanger <asterix@lagaule.org> 
    44## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com> 
    55## 
    6 ## This program is free software; you can redistribute it and/or modify 
     6## This file is part of Gajim. 
     7## 
     8## Gajim is free software; you can redistribute it and/or modify 
    79## it under the terms of the GNU General Public License as published 
    8 ## by the Free Software Foundation; version 2 only. 
     10## by the Free Software Foundation; version 3 only. 
    911## 
    10 ## This program is distributed in the hope that it will be useful, 
     12## Gajim is distributed in the hope that it will be useful, 
    1113## but WITHOUT ANY WARRANTY; without even the implied warranty of 
    1214## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1315## GNU General Public License for more details. 
    1416## 
     17## You should have received a copy of the GNU General Public License 
     18## along with Gajim.  If not, see <http://www.gnu.org/licenses/>. 
    1519 
    1620from distutils.core import setup 
     
    2428opts = { 
    2529    'py2exe': { 
    26         'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*', 
     30        'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*,docutils.readers.*,docutils.writers.html4css1', 
    2731        'dll_excludes': [ 
    2832            'iconv.dll','intl.dll','libatk-1.0-0.dll', 
     
    3943setup( 
    4044    name = 'Gajim', 
    41     version = '0.11', 
     45    version = '0.11.4', 
    4246    description = 'A full featured Jabber client', 
    4347    author = 'Gajim Development Team',