gajim-plural/setup_win32.py

64 lines
2.2 KiB
Python
Raw Normal View History

2005-10-14 23:20:12 +02:00
## setup_win32.py (run me as python setup_win32.py py2exe -O2)
##
2012-01-11 22:20:34 +01:00
## Copyright (C) 2003-2012 Yann Leboulanger <asterix AT lagaule.org>
## Copyright (C) 2005-2006 Nikos Kouremenos <kourem AT gmail.com>
## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
##
## This file is part of Gajim.
##
## Gajim 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 3 only.
##
## Gajim 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.
##
## You should have received a copy of the GNU General Public License
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
##
2010-10-26 17:28:08 +02:00
from cx_Freeze import setup, Executable
import glob
import sys
import os
sys.path.append('src')
# Use local gtk folder instead of the one in PATH that is not latest gtk
if 'gtk' in os.listdir('.'):
sys.path.append('gtk/bin')
2010-10-26 17:28:08 +02:00
options = {
'build_exe': {
2012-08-29 10:38:15 +02:00
'includes': ['gtk.keysyms', 'dumbdbm', 'dbhash', 'bsddb', 'new',
'goocanvas', 'Crypto.PublicKey.DSA', 'Crypto.Hash.HMAC',
'numbers'],
2010-10-26 17:28:08 +02:00
'base': 'Win32GUI',
'bin_excludes': [
'iconv.dll', 'intl.dll', 'libatk-1.0-0.dll',
'libgdk_pixbuf-2.0-0.dll', 'libgdk-win32-2.0-0.dll',
2010-10-26 17:28:08 +02:00
'libgio-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', 'libcairo-2.dll',
'libpangocairo-1.0-0.dll', 'libpangoft2-1.0-0.dll',
],
2010-10-26 17:28:08 +02:00
}
}
setup(
name='Gajim',
2012-08-29 10:38:15 +02:00
version='0.15.1',
description='A full featured Jabber client',
author='Gajim Development Team',
2011-09-17 22:22:56 +02:00
url='http://gajim.org/',
download_url='http://gajim.org/downloads.php',
license='GPL',
2010-10-26 17:28:08 +02:00
options=options,
executables=[Executable('src/gajim.py', icon='data/pixmaps/gajim.ico'),
Executable('src/history_manager.py', icon='data/pixmaps/gajim.ico')],
)