2005-10-14 23:20:12 +02:00
|
|
|
## setup_win32.py (run me as python setup_win32.py py2exe -O2)
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
2006-02-10 17:16:28 +01:00
|
|
|
## Copyright (C) 2003-2006 Yann Le Boulanger <asterix@lagaule.org>
|
|
|
|
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem@gmail.com>
|
2005-04-01 01:26:05 +02:00
|
|
|
##
|
|
|
|
## This program 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; version 2 only.
|
|
|
|
##
|
|
|
|
## 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
import py2exe
|
|
|
|
import glob
|
2005-05-17 20:52:04 +02:00
|
|
|
import sys
|
2005-04-01 01:26:05 +02:00
|
|
|
|
2005-05-17 20:52:04 +02:00
|
|
|
sys.path.append('src')
|
2005-05-17 17:48:57 +02:00
|
|
|
includes = ['encodings', 'encodings.utf-8',]
|
2005-04-01 01:26:05 +02:00
|
|
|
|
|
|
|
opts = {
|
2005-05-07 22:23:55 +02:00
|
|
|
'py2exe': {
|
2005-05-17 20:52:04 +02:00
|
|
|
'includes': 'pango,atk,gobject,encodings,encodings.*',
|
2005-05-07 22:23:55 +02:00
|
|
|
'dll_excludes': [
|
|
|
|
'iconv.dll','intl.dll','libatk-1.0-0.dll',
|
|
|
|
'libgdk_pixbuf-2.0-0.dll','libgdk-win32-2.0-0.dll',
|
|
|
|
'libglib-2.0-0.dll','libgmodule-2.0-0.dll',
|
|
|
|
'libgobject-2.0-0.dll','libgthread-2.0-0.dll',
|
|
|
|
'libgtk-win32-2.0-0.dll','libpango-1.0-0.dll',
|
|
|
|
'libpangowin32-1.0-0.dll'
|
2005-04-01 01:26:05 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setup(
|
2005-05-07 22:23:55 +02:00
|
|
|
name = 'Gajim',
|
2006-11-20 15:09:21 +01:00
|
|
|
version = '0.11',
|
|
|
|
description = 'A full featured Jabber client',
|
2006-11-20 15:39:31 +01:00
|
|
|
author = 'Gajim Development Team',
|
|
|
|
url = 'http://www.gajim.org/',
|
|
|
|
download_url = 'http://www.gajim.org/downloads.php',
|
|
|
|
license = 'GPL',
|
|
|
|
|
2005-05-17 17:48:57 +02:00
|
|
|
windows = [{'script': 'src/gajim.py',
|
2006-11-20 15:09:21 +01:00
|
|
|
'icon_resources': [(1, 'data/pixmaps/gajim.ico')]},
|
|
|
|
{'script': 'src/history_manager.py',
|
2005-08-18 23:51:37 +02:00
|
|
|
'icon_resources': [(1, 'data/pixmaps/gajim.ico')]}],
|
2005-04-01 01:26:05 +02:00
|
|
|
options=opts,
|
2005-05-17 17:48:57 +02:00
|
|
|
|
2006-11-20 15:09:21 +01:00
|
|
|
data_files=[('.', glob.glob('src/gtkgui.glade')),
|
2006-02-21 23:43:57 +01:00
|
|
|
('.', glob.glob('src/history_manager.glade')),
|
2005-05-17 20:52:04 +02:00
|
|
|
],
|
2005-04-01 01:26:05 +02:00
|
|
|
)
|