root/branches/gajim_0.11/setup_win32.py

Revision 7992, 1.9 kB (checked in by asterix, 18 months ago)
Line 
1## setup_win32.py (run me as python setup_win32.py py2exe -O2)
2##
3## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
4## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published
8## by the Free Software Foundation; version 2 only.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13## GNU General Public License for more details.
14##
15
16from distutils.core import setup
17import py2exe
18import glob
19import sys
20
21sys.path.append('src')
22includes = ['encodings', 'encodings.utf-8',]
23
24opts = {
25    'py2exe': {
26        'includes': 'pango,atk,gobject,cairo,pangocairo,gtk.keysyms,encodings,encodings.*',
27        'dll_excludes': [
28            'iconv.dll','intl.dll','libatk-1.0-0.dll',
29            'libgdk_pixbuf-2.0-0.dll','libgdk-win32-2.0-0.dll',
30            'libglib-2.0-0.dll','libgmodule-2.0-0.dll',
31            'libgobject-2.0-0.dll','libgthread-2.0-0.dll',
32            'libgtk-win32-2.0-0.dll','libpango-1.0-0.dll',
33            'libpangowin32-1.0-0.dll','libcairo-2.dll',
34            'libpangocairo-1.0-0.dll','libpangoft2-1.0-0.dll',
35        ],
36    }
37}
38
39setup(
40    name = 'Gajim',
41    version = '0.11.1',
42    description = 'A full featured Jabber client',
43    author = 'Gajim Development Team',
44    url = 'http://www.gajim.org/',
45    download_url = 'http://www.gajim.org/downloads.php',
46    license = 'GPL',
47   
48    windows = [{'script': 'src/gajim.py',
49                'icon_resources': [(1, 'data/pixmaps/gajim.ico')]},
50               {'script': 'src/history_manager.py',
51                'icon_resources': [(1, 'data/pixmaps/gajim.ico')]}],
52    options=opts,
53
54    data_files=[('.', glob.glob('src/gtkgui.glade')),
55                ('.', glob.glob('src/history_manager.glade')),
56    ],
57)
Note: See TracBrowser for help on using the browser.