Project:
emesene
Code Location:
git://github.com/emesene/emesene.gitmaster
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#!/usr/bin/python # -*- coding: utf-8 -*- try: from setuptools import setup, find_packages except ImportError: import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages import os import platform import sys import emesene.Info setup_info = dict( name = "emesene", version = emesene.Info.EMESENE_VERSION, description = "Instant Messaging Client", author = emesene.Info.EMESENE_AUTHORS, author_email = "luismarianoguerra@gmail.com", keywords = "messenger im msn jabber gtalk live facebook", long_description = """emesene is an istant messenger capable of connecting to various networks and utilizing different graphical toolkits. Currently msn and jabber are supported through papyon and SleekXMPP, which allows emesene to connect to various IM services such as Windows Live Messenger, GTalk, Facebook Chat, etc.""", url = emesene.Info.EMESENE_WEBSITE, license = "GNU GPL 3", classifiers = [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Communications :: Chat", ], ext_package = "emesene", include_package_data = True, package_data = { "emesene": [ "themes/conversations/*/*/*/*/*", "themes/emotes/*/*", "themes/images/*/*/*", "themes/sounds/*/*" ] } ) if os.name == "nt": import py2exe _data_files = [("data",["emesene/data/hotmlog.htm"])] #include data files, like images, xml, html files for dir in ['emesene/e3', 'emesene/gui', 'emesene/po', 'emesene/themes']: for dirname, dirnames, files in os.walk(dir): if dirname.find("SleekXMPP") == -1 and dirname.find("papylib\papyon") == -1: fpath = [] for f in files: #ignore pyc, py, .gitignore, .doxygen and lintreport.sh files if not f.endswith(".pyc") \ and not f.endswith(".py") \ and not f.startswith(".git") \ and not f == ".doxygen" \ and not f == "lintreport.sh": fpath.append(os.path.join(dirname, f)) if fpath != []: _data_files.append((dirname[8:], fpath)) #include all needed dlls for dirname, dirnames, files in os.walk("dlls"): fpath = [] for f in files: fpath.append(os.path.join(dirname, f)) if fpath != []: _data_files.append((".", fpath)) #include gtk runtime/share, runtime/lib and runtime/etc for path in sys.path: if path.find("gtk") != -1: for dirname, dirnames, files in os.walk(path+"\\runtime\\share\\"): dir = dirname.replace(path+"\\runtime\\share\\","") to = dirname.replace(path+"\\runtime\\","") #ignore unneded folders if dir.startswith('glib-2.0') or \ dir.startswith('gtk-2.0') or \ dir.startswith('icons') or \ dir.startswith('locale') or \ dir.startswith('themes') or \ dir.startswith('webkit-1.0') or \ dir.startswith('xml'): #ignore extra themes if not dir.startswith("themes\\Default\\") and \ not dir.startswith("themes\\Emacs\\") and \ not dir.startswith("themes\\Raleigh\\"): fpath = [] for f in files: fpath.append(os.path.join(dirname, f)) if fpath != []: _data_files.append((to, fpath)) for dirname, dirnames, files in os.walk(path+"\\runtime\\lib\\"): to = dirname.replace(path+"\\runtime\\","") fpath = [] for f in files: #ignore some files if not f.endswith(".a") and not f.endswith(".lib"): fpath.append(os.path.join(dirname, f)) if fpath != []: _data_files.append((to, fpath)) for dirname, dirnames, files in os.walk(path+"\\runtime\\etc\\"): to = dirname.replace(path+"\\runtime\\","") fpath = [] for f in files: fpath.append(os.path.join(dirname, f)) if fpath != []: _data_files.append((to, fpath)) #Use clearlooks theme for dirname, dirnames, files in os.walk(".\\windows\\Clearlooks\\"): to = dirname.replace(".\\windows\\Clearlooks\\","") fpath = [] for f in files: fpath.append(os.path.join(dirname, f)) if fpath != []: _data_files.append((to, fpath)) # include all needed modules includes = ["locale", "gio", "cairo", "pangocairo", "pango", "atk", "gobject", "os", "code", "winsound", "win32api", "plistlib", "win32gui", "OpenSSL", "Crypto", "Queue", "sqlite3", "glob", "webbrowser", "json", "imaplib", "cgi", "gzip", "uuid", "platform", "imghdr", "ctypes", "optparse", "plugin_base", "pyfb", "papyon", "e3.xmpp", "webkit", "unicodedata", "dnspython"] # incude gui.common modules manually, i guess py2exe doesn't do that # automatically because the imports are made inside some functions for dirname, dirnames, files in os.walk("emesene\\gui\\common"): fpath = [] for f in files: if f != "__init__.py" and f.endswith(".py"): includes.append("gui.common."+f[:-2]) # get current path this_module_path = os.path.dirname(unicode(__file__, sys.getfilesystemencoding())) current_path = os.path.abspath(this_module_path) source_path = os.path.join(current_path, 'emesene') dist_path = os.path.join(current_path, "dist") #replace sleekxmpp dir as py2exe doesn't copy all the needed files features_dir = os.path.join(dist_path, "sleekxmpp") source_features_dir = os.path.join(source_path, "e3\\xmpp\\SleekXMPP\\sleekxmpp") try: shutil.rmtree(features_dir) except: pass shutil.copytree(source_features_dir, features_dir, ignore=shutil.ignore_patterns(('*.pyc'))) opts = { "py2exe": { "packages": ["encodings", "gtk", "OpenSSL", "Crypto", "xml", "xml.etree", "xml.etree.ElementTree"], "includes": includes, "excludes": ["appindicator", "ltihooks", "pywin", "pywin.debugger", "pywin.debugger.dbgcon", "pywin.dialogs", "pywin.dialogs.list", "Tkconstants", "Tkinter", "tcl", "doctest", "macpath", "pdb", "cookielib", "ftplib", "pickle", "win32wnet", "getopt", "gdk"], "dll_excludes": ["libglade-2.0-0.dll", "w9xpopen.exe"], "optimize": "2", "dist_dir": "dist", "skip_archive": 1 } } # Add paths so we don't need to copy files to ./emesene and we can run the # setup from outside emesene's source folder sys.path.insert(0, os.path.abspath("./dlls")) sys.path.insert(0, os.path.abspath("./emesene")) sys.path.insert(0, os.path.abspath("./emesene/e3/papylib/papyon")) sys.path.insert(0, os.path.abspath("./emesene/e3/xmpp/SleekXMPP")) sys.path.insert(0, os.path.abspath("./emesene/e3/xmpp/pyfb")) # run setup setup( requires = ["gtk"], windows = [{"script": "emesene/emesene.py", "icon_resources": [(1, "emesene.ico")], "dest_base": "emesene"}, {"script": "emesene/emesene.py", "icon_resources": [(1, "emesene.ico")], "dest_base": "emesene_portable"}], console = [{"script": "emesene/emesene.py", "icon_resources": [(1, "emesene.ico")], "dest_base": "emesene_debug"}, {"script": "emesene/emesene.py", "icon_resources": [(1, "emesene.ico")], "dest_base": "emesene_portable_debug"}], options = opts, data_files = _data_files, **setup_info ) print "done! files at: dist" else: # Data files to be installed to the system _data_files = [ ("share/icons/hicolor/scalable/apps", ["emesene/data/icons/hicolor/scalable/apps/emesene.svg"]), ("share/icons/hicolor/16x16/apps", ["emesene/data/icons/hicolor/16x16/apps/emesene.png"]), ("share/icons/hicolor/22x22/apps", ["emesene/data/icons/hicolor/22x22/apps/emesene.png"]), ("share/icons/hicolor/24x24/apps", ["emesene/data/icons/hicolor/24x24/apps/emesene.png"]), ("share/icons/hicolor/32x32/apps", ["emesene/data/icons/hicolor/32x32/apps/emesene.png"]), ("share/icons/hicolor/36x36/apps", ["emesene/data/icons/hicolor/36x36/apps/emesene.png"]), ("share/icons/hicolor/48x48/apps", ["emesene/data/icons/hicolor/48x48/apps/emesene.png"]), ("share/icons/hicolor/64x64/apps", ["emesene/data/icons/hicolor/64x64/apps/emesene.png"]), ("share/icons/hicolor/72x72/apps", ["emesene/data/icons/hicolor/72x72/apps/emesene.png"]), ("share/icons/hicolor/96x96/apps", ["emesene/data/icons/hicolor/96x96/apps/emesene.png"]), ("share/icons/hicolor/128x128/apps", ["emesene/data/icons/hicolor/128x128/apps/emesene.png"]), ("share/icons/hicolor/192x192/apps", ["emesene/data/icons/hicolor/192x192/apps/emesene.png"]), ("share/icons/hicolor/256x256/apps", ["emesene/data/icons/hicolor/256x256/apps/emesene.png"]), ("share/applications", ["emesene/data/share/applications/emesene.desktop"]), ("share/pixmaps", ["emesene/data/pixmaps/emesene.png", "emesene/data/pixmaps/emesene.xpm"]), ("share/man/man1", ["docs/man/emesene.1"]) ] setup(data_files = _data_files, packages = find_packages(), **setup_info)
