forked from translate/translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·519 lines (470 loc) · 21.1 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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2006-2013 Zuza Software Foundation
#
# This file is part of Translate.
#
# Translate 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; either version 2 of the License, or (at your option) any later
# version.
#
# Translate 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
# Translate; if not, see <http://www.gnu.org/licenses/>.
import os
import re
import sys
from distutils.sysconfig import get_python_lib
from os.path import dirname, isfile, join
from setuptools import setup
try:
from sphinx.setup_command import BuildDoc
cmdclass = {'build_sphinx': BuildDoc}
except ImportError:
cmdclass = {}
from translate import __doc__, __version__
PRETTY_NAME = 'Translate Toolkit'
translateversion = __version__.sver
packagesdir = get_python_lib()
sitepackages = packagesdir.replace(sys.prefix + os.sep, '')
infofiles = [(join(sitepackages, 'translate'),
[filename for filename in ('COPYING', 'README.rst')])]
initfiles = [(join(sitepackages, 'translate'), [join('translate', '__init__.py')])]
subpackages = [
"convert",
"filters",
"lang",
"misc",
"storage",
join("storage", "placeables"),
join("storage", "versioncontrol"),
join("storage", "xml_extract"),
"search",
join("search", "indexing"),
"services",
"tools",
]
# TODO: elementtree doesn't work in sdist, fix this
packages = ["translate"]
# This builds console scripts list. More detail please see:
# http://python-packaging.readthedocs.org/en/latest/command-line-scripts.html#the-console-scripts-entry-point
translatescripts = [
'{name}={entry}'.format(name=name, entry=entry) for name, entry in [
('csv2po', 'translate.convert.csv2po:main'),
('csv2tbx', 'translate.convert.csv2tbx:main'),
('tbx2po', 'translate.convert.tbx2po:main'),
('flatxml2po', 'translate.convert.flatxml2po:main'),
('html2po', 'translate.convert.html2po:main'),
('ical2po', 'translate.convert.ical2po:main'),
('idml2po', 'translate.convert.idml2po:main'),
('ini2po', 'translate.convert.ini2po:main'),
('json2po', 'translate.convert.json2po:main'),
('l20n2po', 'translate.convert.l20n2po:main'),
('moz2po', 'translate.convert.moz2po:main'),
('mozlang2po', 'translate.convert.mozlang2po:main'),
('odf2xliff', 'translate.convert.odf2xliff:main'),
('oo2po', 'translate.convert.oo2po:main'),
('oo2xliff', 'translate.convert.oo2xliff:main'),
('php2po', 'translate.convert.php2po:main'),
('po2csv', 'translate.convert.po2csv:main'),
('po2flatxml', 'translate.convert.po2flatxml:main'),
('po2html', 'translate.convert.po2html:main'),
('po2ical', 'translate.convert.po2ical:main'),
('po2idml', 'translate.convert.po2idml:main'),
('po2ini', 'translate.convert.po2ini:main'),
('po2json', 'translate.convert.po2json:main'),
('po2l20n', 'translate.convert.po2l20n:main'),
('po2moz', 'translate.convert.po2moz:main'),
('po2mozlang', 'translate.convert.po2mozlang:main'),
('po2oo', 'translate.convert.po2oo:main'),
('po2php', 'translate.convert.po2php:main'),
('po2prop', 'translate.convert.po2prop:main'),
('po2rc', 'translate.convert.po2rc:main'),
('po2resx', 'translate.convert.po2resx:main'),
('po2sub', 'translate.convert.po2sub:main'),
('po2symb', 'translate.convert.po2symb:main'),
('po2tiki', 'translate.convert.po2tiki:main'),
('po2tmx', 'translate.convert.po2tmx:main'),
('po2ts', 'translate.convert.po2ts:main'),
('po2txt', 'translate.convert.po2txt:main'),
('po2web2py', 'translate.convert.po2web2py:main'),
('po2wordfast', 'translate.convert.po2wordfast:main'),
('po2xliff', 'translate.convert.po2xliff:main'),
('po2yaml', 'translate.convert.po2yaml:main'),
('pot2po', 'translate.convert.pot2po:main'),
('prop2po', 'translate.convert.prop2po:main'),
('rc2po', 'translate.convert.rc2po:main'),
('resx2po', 'translate.convert.resx2po:main'),
('sub2po', 'translate.convert.sub2po:main'),
('symb2po', 'translate.convert.symb2po:main'),
('tiki2po', 'translate.convert.tiki2po:main'),
('ts2po', 'translate.convert.ts2po:main'),
('txt2po', 'translate.convert.txt2po:main'),
('web2py2po', 'translate.convert.web2py2po:main'),
('xliff2odf', 'translate.convert.xliff2odf:main'),
('xliff2oo', 'translate.convert.xliff2oo:main'),
('xliff2po', 'translate.convert.xliff2po:main'),
('yaml2po', 'translate.convert.yaml2po:main'),
('pofilter', 'translate.filters.pofilter:main'),
('tmserver', 'translate.services.tmserver:main'),
('build_tmdb', 'translate.tools.build_tmdb:main'),
('phppo2pypo', 'translate.tools.phppo2pypo:main'),
('poclean', 'translate.tools.poclean:main'),
('pocompile', 'translate.tools.pocompile:main'),
('poconflicts', 'translate.tools.poconflicts:main'),
('pocount', 'translate.tools.pocount:main'),
('podebug', 'translate.tools.podebug:main'),
('pogrep', 'translate.tools.pogrep:main'),
('pomerge', 'translate.tools.pomerge:main'),
('porestructure', 'translate.tools.porestructure:main'),
('posegment', 'translate.tools.posegment:main'),
('poswap', 'translate.tools.poswap:main'),
('poterminology', 'translate.tools.poterminology:main'),
('pretranslate', 'translate.tools.pretranslate:main'),
('pydiff', 'translate.tools.pydiff:main'),
('pypo2phppo', 'translate.tools.pypo2phppo:main'),
]
]
translatebashscripts = [
join(*('tools', ) + script) for script in [
('junitmsgfmt', ),
('mozilla', 'build_firefox.sh'),
('mozilla', 'buildxpi.py'),
('mozilla', 'get_moz_enUS.py'),
('pocommentclean', ),
('pocompendium', ),
('pomigrate2', ),
('popuretext', ),
('poreencode', ),
('posplit', ),
]
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Localization",
]
# py2exe-specific stuff
try:
import py2exe
except ImportError:
py2exe = None
else:
BuildCommand = py2exe.build_exe.py2exe
Distribution = py2exe.Distribution
class InnoScript:
"""class that builds an InnoSetup script"""
def __init__(self, name, lib_dir, dist_dir, exe_files=[],
other_files=[], install_scripts=[], version="1.0"):
self.lib_dir = lib_dir
self.dist_dir = dist_dir
if not self.dist_dir.endswith(os.sep):
self.dist_dir += os.sep
self.name = name
self.version = version
self.exe_files = [self.chop(p) for p in exe_files]
self.other_files = [self.chop(p) for p in other_files]
self.install_scripts = install_scripts
def getcompilecommand(self):
try:
import _winreg
compile_key = _winreg.OpenKey(
_winreg.HKEY_CLASSES_ROOT,
"innosetupscriptfile\\shell\\compile\\command")
compilecommand = _winreg.QueryValue(compile_key, "")
compile_key.Close()
except Exception:
compilecommand = 'compil32.exe "%1"'
return compilecommand
def chop(self, pathname):
"""returns the path relative to self.dist_dir"""
assert pathname.startswith(self.dist_dir)
return pathname[len(self.dist_dir):]
def create(self, pathname=None):
"""creates the InnoSetup script"""
if pathname is None:
_name = self.name + os.extsep + "iss"
self.pathname = join(self.dist_dir, _name).replace(" ", "_")
else:
self.pathname = pathname
# See http://www.jrsoftware.org/isfaq.php for more InnoSetup config options.
ofi = self.file = open(self.pathname, "w")
ofi.write("; WARNING: This script has been created by py2exe. Changes to this script\n")
ofi.write("; will be overwritten the next time py2exe is run!\n")
ofi.write("[Setup]\n")
ofi.write("AppName=%s\n" % self.name)
ofi.write("AppVerName=%s %s\n" % (self.name, self.version))
ofi.write("DefaultDirName={pf}\\%s\n" % self.name)
ofi.write("DefaultGroupName=%s\n" % self.name)
ofi.write("OutputBaseFilename=%s-%s-setup\n" % (self.name, self.version))
ofi.write("ChangesEnvironment=yes\n")
ofi.write("\n")
ofi.write("[Files]\n")
for path in self.exe_files + self.other_files:
ofi.write('Source: "%s"; DestDir: "{app}\\%s"; Flags: ignoreversion\n' % (path, dirname(path)))
ofi.write("\n")
ofi.write("[Icons]\n")
ofi.write('Name: "{group}\\Documentation"; Filename: "{app}\\docs\\index.html";\n')
ofi.write('Name: "{group}\\Translate Toolkit Command Prompt"; Filename: "cmd.exe"\n')
ofi.write('Name: "{group}\\Uninstall %s"; Filename: "{uninstallexe}"\n' % self.name)
ofi.write("\n")
ofi.write("[Registry]\n")
# TODO: Move the code to update the Path environment variable to a
# Python script which will be invoked by the [Run] section (below)
ofi.write(
'Root: HKCU; Subkey: "Environment"; ValueType: expandsz; '
'ValueName: "Path"; ValueData: "{reg:HKCU\\Environment,Path|};{app};"\n')
ofi.write("\n")
if self.install_scripts:
ofi.write("[Run]\n")
for path in self.install_scripts:
ofi.write('Filename: "{app}\\%s"; WorkingDir: "{app}"; Parameters: "-install"\n' % path)
ofi.write("\n")
ofi.write("[UninstallRun]\n")
for path in self.install_scripts:
ofi.write('Filename: "{app}\\%s"; WorkingDir: "{app}"; Parameters: "-remove"\n' % path)
ofi.write("\n")
ofi.close()
def compile(self):
"""compiles the script using InnoSetup"""
shellcompilecommand = self.getcompilecommand()
compilecommand = shellcompilecommand.replace('"%1"', self.pathname)
result = os.system(compilecommand)
if result:
print("Error compiling iss file")
print("Opening iss file, use InnoSetup GUI to compile manually")
os.startfile(self.pathname)
class build_exe_map(BuildCommand):
"""distutils py2exe-based class that builds the exe file(s) but allows
mapping data files
"""
def reinitialize_command(self, command, reinit_subcommands=0):
if command == "install_data":
install_data = BuildCommand.reinitialize_command(
self, command, reinit_subcommands)
install_data.data_files = self.remap_data_files(install_data.data_files)
return install_data
return BuildCommand.reinitialize_command(self, command, reinit_subcommands)
def remap_data_files(self, data_files):
"""maps the given data files to different locations using external
map_data_file function
"""
new_data_files = []
for f in data_files:
if isinstance(f, str):
f = map_data_file(f)
else:
datadir, files = f
datadir = map_data_file(datadir)
if datadir is None:
f = None
else:
f = datadir, files
if f is not None:
new_data_files.append(f)
return new_data_files
class BuildInstaller(build_exe_map):
"""distutils class that first builds the exe file(s), then creates a
Windows installer using InnoSetup
"""
description = "create an executable installer for MS Windows using InnoSetup and py2exe"
user_options = getattr(
BuildCommand, 'user_options', []) + [(
'install-script=', None,
"basename of installation script to be run after installation or before deinstallation")]
def initialize_options(self):
BuildCommand.initialize_options(self)
self.install_script = None
def run(self):
# First, let py2exe do it's work.
BuildCommand.run(self)
lib_dir = self.lib_dir
dist_dir = self.dist_dir
# create the Installer, using the files py2exe has created.
exe_files = self.windows_exe_files + self.console_exe_files
install_scripts = self.install_script
if isinstance(install_scripts, str):
install_scripts = [install_scripts]
script = InnoScript(PRETTY_NAME, lib_dir, dist_dir, exe_files,
self.lib_files,
version=self.distribution.metadata.version,
install_scripts=install_scripts)
print("*** creating the inno setup script***")
script.create()
print("*** compiling the inno setup script***")
script.compile()
# Note: By default the final setup.exe will be in an Output
# subdirectory.
class TranslateDistribution(Distribution):
"""a modified distribution class for translate"""
def __init__(self, attrs):
baseattrs = {}
py2exeoptions = {}
py2exeoptions["packages"] = ["translate", "encodings"]
py2exeoptions["compressed"] = True
py2exeoptions["excludes"] = [
"PyLucene", "Tkconstants", "Tkinter", "tcl",
"enchant", # Need to do more to support spell checking on Windows
# strange things unnecessarily included with some versions of pyenchant:
"win32ui", "_win32sysloader", "win32pipe", "py2exe", "win32com",
"pywin", "isapi", "_tkinter", "win32api",
]
version = attrs.get("version", translateversion)
py2exeoptions["dist_dir"] = "translate-toolkit-%s" % version
py2exeoptions["includes"] = ["lxml", "lxml._elementpath"]
options = {"py2exe": py2exeoptions}
baseattrs['options'] = options
if py2exe:
# http://www.py2exe.org/index.cgi/ListOfOptions
consolescripts = []
for entry_point in translatescripts:
module = entry_point.partition('=')[2].rpartition(':')[0]
script_path = module.replace('.', os.sep) + '.py'
consolescripts.append(script_path)
baseattrs['console'] = consolescripts
baseattrs['zipfile'] = "translate.zip"
baseattrs['cmdclass'] = cmdclass.update({
"py2exe": build_exe_map,
"innosetup": BuildInstaller,
})
options["innosetup"] = py2exeoptions.copy()
options["innosetup"]["install_script"] = []
baseattrs.update(attrs)
Distribution.__init__(self, baseattrs)
def map_data_file(data_file):
"""remaps a data_file (could be a directory) to a different location
This version gets rid of Lib\\site-packages, etc
"""
data_parts = data_file.split(os.sep)
if data_parts[:2] == ["Lib", "site-packages"]:
data_parts = data_parts[2:]
if data_parts:
data_file = join(*data_parts)
else:
data_file = ""
if data_parts[:1] == ["translate"]:
data_parts = data_parts[1:]
if data_parts:
data_file = join(*data_parts)
else:
data_file = ""
return data_file
def parse_requirements(file_name):
"""Parses a pip requirements file and returns a list of packages.
Use the result of this function in the ``install_requires`` field.
Copied from cburgmer/pdfserver.
"""
requirements = []
with open(file_name, 'r') as fh:
for line in fh:
# Ignore comments, blank lines and included requirements files
if re.match(r'(\s*#)|(\s*$)|(-r .*$)', line):
continue
if re.match(r'\s*-e\s+', line):
requirements.append(re.sub(r'\s*-e\s+.*#egg=(.*)$', r'\1', line))
elif not re.match(r'\s*-f\s+', line):
requirements.append(line.rstrip('\n'))
return requirements
def getdatafiles():
datafiles = initfiles + infofiles
def listfiles(srcdir):
return (
join(sitepackages, 'translate', srcdir),
[join(srcdir, f)
for f in os.listdir(srcdir) if isfile(join(srcdir, f))])
docfiles = []
for subdir in ['docs', 'share']:
docwalk = os.walk(subdir)
for docs in docwalk:
files = listfiles(docs[0])
if files[1]:
docfiles.append(files)
datafiles += docfiles
return datafiles
def buildmanifest_in(f, scripts):
"""This writes the required files to a MANIFEST.in file"""
f.write("# MANIFEST.in: the below autogenerated by setup.py from translate %s\n" % translateversion)
f.write("# things needed by translate setup.py to rebuild\n")
f.write("# informational fs\n")
for infof in ("README.rst", "COPYING", "*.txt"):
f.write("global-include %s\n" % infof)
f.write("# C programs\n")
f.write("global-include *.c\n")
f.write("# scripts which don't get included by default in sdist\n")
for scriptname in scripts:
f.write("include %s\n" % scriptname)
f.write("# include our documentation\n")
f.write("graft docs\n")
f.write("prune docs/doctrees\n")
f.write("graft tests\n")
f.write("global-exclude .coverage*\n")
f.write("global-exclude *~\n")
f.write("global-exclude *.pyc\n")
f.write("graft share\n")
f.write("# MANIFEST.in: end of autogenerated block")
def standardsetup(name, version, custompackages=[], customdatafiles=[]):
# TODO: make these end with .py ending on Windows...
try:
with open("MANIFEST.in", "w") as manifest_in:
buildmanifest_in(manifest_in, translatebashscripts)
except IOError as e:
sys.stderr.write("warning: could not recreate MANIFEST.in, continuing anyway. (%s)\n" % e)
for subpackage in subpackages:
initfiles.append((join(sitepackages, "translate", subpackage),
[join("translate", subpackage, "__init__.py")]))
packages.append("translate.%s" % subpackage)
datafiles = getdatafiles()
dosetup(name, version, packages + custompackages, datafiles + customdatafiles,
translatebashscripts)
def dosetup(name, version, packages, datafiles, scripts, ext_modules=[]):
description, long_description = __doc__.split("\n", 1)
kwargs = {}
if py2exe:
kwargs["distclass"] = TranslateDistribution
setup(
name=name,
version=version,
python_requires=">=3.5",
license="GNU General Public License (GPL)",
description=description,
long_description=long_description,
author="Translate",
author_email="[email protected]",
url="http://toolkit.translatehouse.org/",
download_url="https://github.com/translate/translate/releases/tag/" + version,
project_urls={
"Issue Tracker": "https://github.com/translate/translate/issues",
"Documentation": "http://docs.translatehouse.org/projects/translate-toolkit/",
},
platforms=["any"],
classifiers=classifiers,
packages=packages,
data_files=datafiles,
entry_points={
'console_scripts': translatescripts,
},
scripts=scripts,
ext_modules=ext_modules,
cmdclass=cmdclass,
install_requires=parse_requirements('requirements/required.txt'),
**kwargs
)
if __name__ == "__main__":
standardsetup("translate-toolkit", translateversion)