forked from exelearning/iteexe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwin-setup.py
executable file
·211 lines (195 loc) · 5.78 KB
/
win-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
#!/usr/bin/python
# win-setup.py
import glob
import os
import py2exe
import httplib2
from distutils.core import setup
from exe.engine import version
try:
# py2exe 0.6.4 introduced a replacement modulefinder.
# This means we have to add package paths there, not to the built-in
# one. If this new modulefinder gets integrated into Python, then
# we might be able to revert this some day.
# If this doesn't work, try import modulefinder
try:
import py2exe.mf as modulefinder
except ImportError:
import modulefinder
import win32com, sys
for p in win32com.__path__[1:]:
modulefinder.AddPackagePath("win32com", p)
for extra in ["win32com.shell"]: #,"win32com.mapi"
__import__(extra)
m = sys.modules[extra]
for p in m.__path__[1:]:
modulefinder.AddPackagePath(extra, p)
except ImportError:
# No build path setup, no worries.
pass
# Files that are going to be copied (We add these ones manually)
g_files = {
'.': [
# Although this is a copy of debian/changelog
"ChangeLog",
# Removed, this is the GPL - to copyright
#"COPYING",
# No longer used, after bug 2284 was fixed
#"NEWS",
# ReadMe file
"README",
# eXe main icon
"exe/webui/images/eXe_icon.ico",
#"exe/webui/mr_x.gif",
# License file
"installs/windows/exeLicense.txt",
# Root certificates
os.path.join(os.path.dirname(httplib2.__file__), 'cacerts.txt')
]
}
def dataFiles(dirs, excludes=[]):
"""
Recursively get all the files in these 'dirs' directories
except those listed in 'excludes'
"""
# Get global variables
global dataFiles, g_oldBase, g_newBase, g_files
# Go throught all files
for file in dirs:
# This will prevent it from copying hidden or excluded files
if not os.path.basename(file[0]).startswith(".") and file not in excludes:
# If it is a file
if os.path.isfile(file):
# If there is source dir
if len(g_oldBase) >= 1:
# We get only the part after that from the file path
path = file[len(g_oldBase) + 1:]
# If there isn't
else:
# We get all of the path
path = file
# Get the full new path
dir = os.path.join(g_newBase, os.path.dirname(path))
# If the path is already in the array
if dir in g_files:
# Append the file
g_files[dir].append(file)
# If it is not
else:
# Create a new array with the file
g_files[dir] = [file]
# If is is a directory
elif os.path.isdir(file):
# Call this function with the subdirectory
dataFiles(glob.glob(file + "/*"), excludes)
# Source dir
g_oldBase = "exe/webui"
# Destination dir
g_newBase = "."
# Process WebUI files
dataFiles(
[
"exe/webui/style",
"exe/webui/content_template",
"exe/webui/css",
"exe/webui/images",
# jrf - task 1080, the manual is no longer included
# "exe/webui/docs",
"exe/webui/scripts",
"exe/webui/schemas",
"exe/webui/templates",
"exe/webui/tools"
],
# We exlude mimetext executables for other OS
excludes = ['mimetex-darwin.cgi']
)
# Process metadata validation rules
g_oldBase = "exe/webui"
g_newBase = "."
dataFiles(['exe/webui/exportvalidation.json'])
# Process Mobile Profiles
g_oldBase = "exe"
g_newBase = "."
dataFiles(["exe/mediaprofiles"])
# Process locales folder
g_oldBase = "exe"
g_newBase = "."
# We exclude PO files, the POT file and japanese XLF files
excludes = glob.glob(g_oldBase + "/*/LC_MESSAGES/*.po")
excludes.append(g_oldBase + "/ja/exe_jp.xlf")
excludes.append(g_oldBase + "/ja/exe_ja.xlf")
excludes.append(g_oldBase + "/messages.pot")
excludes.sort()
dataFiles(["exe/locale"], excludes=excludes)
# Process JSUI files
g_oldBase = "exe/jsui"
g_newBase = "."
dataFiles(["exe/jsui/scripts", "exe/jsui/templates"])
# py2exe options
opts = {
"py2exe": {
"packages": [
"encodings",
"nevow",
"nevow.flat",
"cProfile",
"functools",
"csv",
"libxml2",
"robotparser",
"chardet",
"lxml",
"feedparser",
"bs4",
"BaseHTTPServer",
"oauthlib",
"webassets",
"cssmin"
]
}
}
# Run the setup
setup(
# Project name
name=version.project,
# Project version
version=version.version,
# Project author
author="INTEF-eXe Project",
# Author email
author_email="[email protected]",
# Project description
description="The EXtremely Easy to use eLearning authoring tool",
# Project long description
long_description="""\
The eXe project is an authoring environment to enable teachers
to publish web content without the need to become proficient in
HTML or XML markup. Content generated using eXe can be used by
any Learning Management System.
""",
# Project homepage
url="http://exelearning.net",
# Project license
license="GPL",
# Executable files
scripts=["exe/exe", "exe/exe_do"],
# Graphic Interface application
windows=["exe/exe"],
# Console application
console=["exe/exe_do"],
# Project packages
packages=[
"exe",
"exe.engine",
"exe.webui",
"exe.export",
"exe.importers",
"exe.jsui",
"exe.engine.lom",
"exe.engine.exceptions"
],
# Files list
data_files=g_files.items(),
# Custom options
options=opts
)