| 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 | |
|---|
| 16 | from distutils.core import setup |
|---|
| 17 | import py2exe |
|---|
| 18 | import glob |
|---|
| 19 | import sys |
|---|
| 20 | |
|---|
| 21 | sys.path.append('src') |
|---|
| 22 | includes = ['encodings', 'encodings.utf-8',] |
|---|
| 23 | |
|---|
| 24 | opts = { |
|---|
| 25 | 'py2exe': { |
|---|
| 26 | 'includes': 'pango,atk,gobject,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' |
|---|
| 34 | ], |
|---|
| 35 | } |
|---|
| 36 | } |
|---|
| 37 | |
|---|
| 38 | setup( |
|---|
| 39 | name = 'Gajim', |
|---|
| 40 | version = '9', |
|---|
| 41 | description = 'A Jabber client written in PyGTK', |
|---|
| 42 | windows = [{'script': 'src/gajim.py', |
|---|
| 43 | 'icon_resources': [(1, 'data/pixmaps/gajim.ico')]}, |
|---|
| 44 | {'script': 'src/history_manager.py', |
|---|
| 45 | 'icon_resources': [(1, 'data/pixmaps/gajim.ico')]}], |
|---|
| 46 | options=opts, |
|---|
| 47 | |
|---|
| 48 | data_files=[('.', glob.glob('src/gtkgui.glade')), |
|---|
| 49 | ('.', glob.glob('src/history_manager.glade')), |
|---|
| 50 | ], |
|---|
| 51 | ) |
|---|