-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathsetup.py
200 lines (174 loc) · 8.17 KB
/
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
import os, sys, shutil, glob, subprocess
from setuptools import setup, Command
import mnemosyne.version
class InnoScript:
def __init__(self):
self.name = "Mnemosyne"
self.dist_dir = os.path.join("dist", "Mnemosyne")
self.version = mnemosyne.version.version
def chop(self, pathname):
assert pathname.startswith(self.dist_dir)
return pathname[len(self.dist_dir)+1:]
def create(self):
self.pathname = os.path.join(\
os.getcwd(), "dist", "Mnemosyne", "mnemosyne.iss")
ofi = self.file = open(self.pathname, "w")
print("; WARNING: This script has been created automatically. "+\
"Changes to this script", file=ofi)
print("; will be overwritten the next time setup.py is run!", file=ofi)
print(r"[Setup]", file=ofi)
print(r"AppName=%s" % self.name, file=ofi)
print(r"AppVerName=%s %s" % (self.name, self.version), file=ofi)
print(r"AppVersion=%s" % self.version, file=ofi)
print(r"DefaultDirName={pf}\%s" % self.name, file=ofi)
print(r"DefaultGroupName=%s" % self.name, file=ofi)
publisher = "Peter Bienstman"
print(r"AppPublisher=%s" % publisher, file=ofi)
path = "mnemosyne.exe"
print(r"UninstallDisplayIcon={app}\%s" % path, file=ofi)
print(file=ofi)
print(r"[Messages]", file=ofi)
print(r"ConfirmUninstall=Are you really really sure you want to remove %1? Your cards will not be deleted.", file=ofi)
print(file=ofi)
print(r"[Files]", file=ofi)
for root, dirnames, filenames in os.walk(self.dist_dir):
for filename in filenames:
path = self.chop(os.path.join(root, filename))
print(r'Source: "%s"; DestDir: "{app}\%s"; Flags: ignoreversion' \
% (path, os.path.dirname(path)), file=ofi)
print(file=ofi)
print(r"[Icons]", file=ofi)
path = "mnemosyne.exe"
print(r'Name: "{group}\%s"; Filename: "{app}\%s"' \
% (self.name, path), end=' ', file=ofi)
print(' ; WorkingDir: {app}', file=ofi)
print(r'Name: "{group}\Uninstall %s"; Filename: "{uninstallexe}"'
% self.name, file=ofi)
class build_windows_installer(Command):
"""This first builds the exe file(s), then creates a Windows installer.
You need InnoSetup for it.
"""
user_options = []
def initialize_options(self):
self.cwd = None
def finalize_options(self):
self.cwd = os.getcwd()
def run(self):
# First, let pyinstaller do it's work.
subprocess.call(["pyinstaller", "mnemosyne.spec"])
# Then, create installer with InnoSetup.
InnoScript().create()
subprocess.call([\
"C:\Program Files (x86)\Inno Setup 6\Compil32.exe", "/cc",
"dist\Mnemosyne\Mnemosyne.iss"])
# Note: the final setup.exe will be in an Output subdirectory.
if sys.platform == "darwin": # For py2app.
base_path = ""
data_files = []
else:
base_path = os.path.join(sys.exec_prefix, "lib", "python" + sys.version[:3],
"site-packages","mnemosyne")
data_files = [(os.path.join(sys.exec_prefix, "share", "applications"), ["mnemosyne.desktop"]),
(os.path.join(sys.exec_prefix, "share", "icons"), ["pixmaps/mnemosyne.png"])]
# Translations.
if sys.platform != "win32":
for mo in [x for x in glob.glob(os.path.join("mo", "*"))
if os.path.isdir(x)]:
data_files.append((os.path.join(sys.exec_prefix, "share", "locale",
os.path.split(mo)[1], "LC_MESSAGES"),
[os.path.join(mo, "LC_MESSAGES", "mnemosyne.mo")]))
for mo in [x for x in glob.glob(os.path.join("mo", "*"))
if os.path.isdir(x)]:
data_files.append((os.path.join(sys.exec_prefix, "share", "locale",
os.path.split(mo)[1], "LC_MESSAGES"),
[os.path.join(mo, "LC_MESSAGES", "mnemosyne.mo")]))
pixmap_path = os.path.join(base_path, "pixmaps")
util_path = os.path.join(base_path, "util")
doc_path = os.path.join(base_path, "docs")
build_path = os.path.join(base_path, "build")
# Pixmaps.
for pixmap in os.listdir("pixmaps"):
data_files.append(("pixmaps",
[os.path.join("pixmaps", pixmap)]))
setup_requires = []
# py2app (OS X).
py2app_options = {
"argv_emulation": True,
"includes": "sip,numpy,cheroot,cPickle,md5,logging,shutil,xml.sax",
"iconfile": "pixmaps/mnemosyne.icns",
"qt_plugins": ["sqldrivers", "imageformats"],
"packages": "mnemosyne, mnemosyne.pyqt_ui, mnemosyne.libmnemosyne, \
mnemosyne.libmnemosyne.translators, mnemosyne.libmnemosyne.card_types, \
mnemosyne.libmnemosyne.databases, mnemosyne.libmnemosyne.file_formats, \
mnemosyne.libmnemosyne.filters, mnemosyne.libmnemosyne.loggers, \
mnemosyne.libmnemosyne.plugins, mnemosyne.libmnemosyne.renderers, \
mnemosyne.libmnemosyne.gui_translators, mnemosyne.libmnemosyne.languagues, \
mnemosyne.libmnemosyne.translators, mnemosyne.libmnemosyne.pronouncers, \
mnemosyne.libmnemosyne.renderers.anki, \
mnemosyne.libmnemosyne.renderers.anki.template \
mnemosyne.libmnemosyne.render_chains, mnemosyne.libmnemosyne.schedulers, \
mnemosyne.libmnemosyne.controllers, mnemosyne.libmnemosyne.ui_components, \
mnemosyne.libmnemosyne.statistics_pages, mnemosyne.libmnemosyne.study_modes, \
mnemosyne.libmnemosyne.review_controllers, \
mnemosyne.libmnemosyne.criteria, mnemosyne.libmnemosyne.upgrades, \
mnemosyne.script, mnemosyne.web_server, openSM2sync, \
openSM2sync.binary_formats, openSM2sync.text_formats" }
py2app_app = ["build/Mnemosyne.py"]
if "py2app" in sys.argv:
setup_requires.append("py2app")
# Create the application script.
if not os.path.exists(build_path):
os.mkdir(build_path)
# Create a copy in build/ with name Mnemosyne.py, because py2app
# needs a script that ends in .py.
appscript = os.path.join(build_path, "Mnemosyne.py")
source = os.path.join(base_path, "mnemosyne", "pyqt_ui", "mnemosyne")
if os.path.exists(appscript):
os.unlink(appscript)
shutil.copyfile(source, appscript)
package_name = "mnemosyne"
packages = ["mnemosyne",
"mnemosyne.pyqt_ui",
"mnemosyne.libmnemosyne",
"mnemosyne.libmnemosyne.gui_translators",
"mnemosyne.libmnemosyne.translators",
"mnemosyne.libmnemosyne.pronouncers",
"mnemosyne.libmnemosyne.languages",
"mnemosyne.libmnemosyne.card_types",
"mnemosyne.libmnemosyne.databases",
"mnemosyne.libmnemosyne.file_formats",
"mnemosyne.libmnemosyne.filters",
"mnemosyne.libmnemosyne.loggers",
"mnemosyne.libmnemosyne.plugins",
"mnemosyne.libmnemosyne.renderers",
"mnemosyne.libmnemosyne.renderers.anki",
"mnemosyne.libmnemosyne.renderers.anki.template",
"mnemosyne.libmnemosyne.render_chains",
"mnemosyne.libmnemosyne.schedulers",
"mnemosyne.libmnemosyne.controllers",
"mnemosyne.libmnemosyne.ui_components",
"mnemosyne.libmnemosyne.study_modes",
"mnemosyne.libmnemosyne.statistics_pages",
"mnemosyne.libmnemosyne.review_controllers",
"mnemosyne.libmnemosyne.criteria",
"mnemosyne.libmnemosyne.upgrades",
"mnemosyne.script",
"mnemosyne.web_server",
"openSM2sync",
"openSM2sync.binary_formats",
"openSM2sync.text_formats"
]
setup(name = "Mnemosyne",
version = mnemosyne.version.version,
author = "Peter Bienstman",
author_email = "[email protected]",
packages = packages,
package_dir = {"mnemosyne": "mnemosyne"},
data_files = data_files,
scripts = ["mnemosyne/pyqt_ui/mnemosyne"],
cmdclass = {"build_windows_installer": build_windows_installer},
# py2app
setup_requires = setup_requires,
options = {"py2app": py2app_options},
app = py2app_app
)