source: sasview/sasview/setup_exe.py @ 450c6f6

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 450c6f6 was 450c6f6, checked in by Piotr Rozyczko <rozyczko@…>, 7 years ago

Fixed fallout from a file removal. Please test your commits!

  • Property mode set to 100644
File size: 12.6 KB
Line 
1#!/usr/bin/env python
2
3#
4# The setup to create a Windows executable.
5# Inno Setup can then be used with the installer.iss file
6# in the top source directory to create an installer.
7#
8# Setuptools clashes with py2exe 0.6.8 (and probably later too).
9# For that reason, most of the code needs to have direct imports
10# that are not going through pkg_resources.
11#
12# Attention should be paid to dynamic imports. Data files can
13# be added to the distribution directory for that purpose.
14# See for example the 'images' directory below.
15
16import os
17import sys
18import warnings
19from glob import glob
20import shutil
21
22from distutils.util import get_platform
23from distutils.core import setup
24from distutils.filelist import findall
25from distutils.sysconfig import get_python_lib
26import py2exe
27
28#from idlelib.PyShell import warning_stream
29
30# put the build directory at the front of the path
31if os.path.abspath(os.path.dirname(__file__)) != os.path.abspath(os.getcwd()):
32    raise RuntimeError("Must run setup_exe from the sasview directory")
33root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
34platform = '%s-%s'%(get_platform(), sys.version[:3])
35build_path = os.path.join(root, 'build', 'lib.'+platform)
36#build_path = os.path.join(root, 'sasview-install', 'Lib', 'site-packages')
37sys.path.insert(0, build_path)
38
39import local_config
40from installer_generator import generate_installer
41
42import matplotlib
43try:
44    import tinycc
45except ImportError:
46    warnings.warn("TinyCC package is not available and will not be included")
47    tinycc = None
48
49if len(sys.argv) == 1:
50    sys.argv.append('py2exe')
51
52# When using the SasView build script, we need to be able to pass
53# an extra path to be added to the python path. The extra arguments
54# should be removed from the list so that the setup processing doesn't
55# fail.
56try:
57    if sys.argv.count('--extrapath'):
58        path_flag_idx = sys.argv.index('--extrapath')
59        extra_path = sys.argv[path_flag_idx+1]
60        sys.path.insert(0, extra_path)
61        del sys.argv[path_flag_idx+1]
62        sys.argv.remove('--extrapath')
63except:
64    print "Error processing extra python path needed to build SasView\n  %s" % \
65                sys.exc_value
66
67
68# Solution taken from here: http://www.py2exe.org/index.cgi/win32com.shell
69# ModuleFinder can't handle runtime changes to __path__, but win32com uses them
70win32_folder = "win32comext"
71try:
72    # py2exe 0.6.4 introduced a replacement modulefinder.
73    # This means we have to add package paths there, not to the built-in
74    # one.  If this new modulefinder gets integrated into Python, then
75    # we might be able to revert this some day.
76    # if this doesn't work, try import modulefinder
77    try:
78        import py2exe.mf as modulefinder
79    except ImportError:
80        import modulefinder
81    import win32com
82    for p in win32com.__path__[1:]:
83        modulefinder.AddPackagePath(win32_folder, p)
84    for extra in ["win32com.shell", "win32com.adsi", "win32com.axcontrol",
85                    "win32com.axscript", "win32com.bits", "win32com.ifilter",
86                    "win32com.internet", "win32com.mapi", "win32com.propsys",
87                    "win32com.taskscheduler"]:
88       
89            __import__(extra)
90            m = sys.modules[extra]
91            for p in m.__path__[1:]:
92                modulefinder.AddPackagePath(extra, p)
93
94except ImportError:
95    # no build path setup, no worries.
96    pass
97
98# Remove the build folder
99shutil.rmtree("build", ignore_errors=True)
100# do the same for dist folder
101shutil.rmtree("dist", ignore_errors=True)
102
103is_64bits = sys.maxsize > 2**32
104arch = "amd64" if is_64bits else "x86"
105manifest = """
106    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
107    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
108      <assemblyIdentity
109        version="5.0.0.0"
110        processorArchitecture="%(arch)s"
111        name="SasView"
112        type="win32">
113      </assemblyIdentity>
114      <description>SasView</description>
115      <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
116        <security>
117          <requestedPrivileges>
118            <requestedExecutionLevel
119              level="asInvoker"
120              uiAccess="false">
121            </requestedExecutionLevel>
122          </requestedPrivileges>
123        </security>
124      </trustInfo>
125      <dependency>
126        <dependentAssembly>
127          <assemblyIdentity
128            type="win32"
129            name="Microsoft.VC90.CRT"
130            version="9.0.21022.8"
131            processorArchitecture="%(arch)s"
132            publicKeyToken="1fc8b3b9a1e18e3b">
133          </assemblyIdentity>
134        </dependentAssembly>
135      </dependency>
136      <dependency>
137        <dependentAssembly>
138          <assemblyIdentity
139            type="win32"
140            name="Microsoft.Windows.Common-Controls"
141            version="6.0.0.0"
142            processorArchitecture="%(arch)s"
143            publicKeyToken="6595b64144ccf1df"
144            language="*">
145          </assemblyIdentity>
146        </dependentAssembly>
147      </dependency>
148    </assembly>
149    """%{'arch': arch}
150
151if is_64bits:
152    msvcrtdll = glob(r"C:\Program Files\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT\*.*")
153else:
154    msvcrtdll = glob(r"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT\*.*")
155if msvcrtdll:
156    msvcrtdll_data_files = ("Microsoft.VC90.CRT", msvcrtdll)
157else:
158    msvcrtdll_data_files = None
159
160
161class Target:
162    def __init__(self, **kw):
163        self.__dict__.update(kw)
164        # for the versioninfo resources
165        self.version = local_config.__version__
166        self.company_name = "SasView.org"
167        self.copyright = "copyright 2009 - 2016"
168        self.name = "SasView"
169       
170#
171# Adapted from http://www.py2exe.org/index.cgi/MatPlotLib
172# to use the MatPlotLib.
173#
174path = os.getcwd()
175
176media_dir = os.path.join(path, "media")
177images_dir = os.path.join(path, "images")
178test_dir = os.path.join(path, "test")
179test_1d_dir = os.path.join(path, "test\\1d_data")
180test_2d_dir = os.path.join(path, "test\\2d_data")
181test_save_dir = os.path.join(path, "test\\save_states")
182test_upcoming_dir = os.path.join(path, "test\\upcoming_formats")
183
184matplotlibdatadir = matplotlib.get_data_path()
185matplotlibdata = findall(matplotlibdatadir)
186
187site_loc = get_python_lib()
188opencl_include_dir = os.path.join(site_loc, "pyopencl", "cl")
189
190data_files = []
191
192if tinycc:
193    data_files += tinycc.data_files()
194
195# Copying SLD data
196import periodictable
197data_files += periodictable.data_files()
198
199import sas.sasgui.perspectives.fitting as fitting
200data_files += fitting.data_files()
201
202import sas.sasgui.perspectives.calculator as calculator
203data_files += calculator.data_files()
204
205import sas.sasgui.perspectives.invariant as invariant
206data_files += invariant.data_files()
207
208import sas.sasgui.guiframe as guiframe
209data_files += guiframe.data_files()
210
211# precompile sas models into the sasview build path; doesn't matter too much
212# where it is so long as it is a place that will get cleaned up afterwards.
213import sasmodels.core
214dll_path = os.path.join(build_path, 'compiled_models')
215compiled_dlls = sasmodels.core.precompile_dlls(dll_path, dtype='double')
216
217# include the compiled models as data; coordinate the target path for the
218# data with installer_generator.py
219data_files.append(('compiled_models', compiled_dlls))
220
221import sasmodels
222data_files += sasmodels.data_files()
223
224for f in matplotlibdata:
225    dirname = os.path.join('mpl-data', f[len(matplotlibdatadir)+1:])
226    data_files.append((os.path.split(dirname)[0], [f]))
227
228# Copy the settings file for the sas.dataloader file extension associations
229import sas.sascalc.dataloader.readers
230f = os.path.join(sas.sascalc.dataloader.readers.get_data_path(), 'defaults.json')
231if os.path.isfile(f):
232    data_files.append(('.', [f]))
233f = 'custom_config.py'
234if os.path.isfile(f):
235    data_files.append(('.', [f]))
236    data_files.append(('config', [f]))
237f = 'local_config.py'
238if os.path.isfile(f):
239    data_files.append(('.', [f]))
240
241#f = 'default_categories.json'
242#if os.path.isfile(f):
243#    data_files.append(('.', [f]))
244
245# numerical libraries
246def dll_check(dll_path, dlls):
247    dll_includes = [os.path.join(dll_path, dll+'.dll') for dll in dlls]
248    return [dll for dll in dll_includes if os.path.exists(dll)]
249
250python_root = os.path.dirname(os.path.abspath(sys.executable))
251# Check for ATLAS
252dll_path = os.path.join(python_root, 'lib', 'site-packages', 'numpy', 'core')
253dlls = ['numpy-atlas']
254atlas_dlls = dll_check(dll_path, dlls)
255
256# Check for MKL
257dll_path = os.path.join(python_root, 'Library', 'bin')
258dlls = ['mkl_core', 'mkl_def', 'libiomp5md']
259mkl_dlls = dll_check(dll_path, dlls)
260
261if atlas_dlls:
262    data_files.append(('.', atlas_dlls))
263elif mkl_dlls:
264    data_files.append(('.', mkl_dlls))
265
266if os.path.isfile("BUILD_NUMBER"):
267    data_files.append(('.', ["BUILD_NUMBER"]))
268
269# Copying the images directory to the distribution directory.
270for f in findall(images_dir):
271    if not ".svn" in f:
272        data_files.append(("images", [f]))
273
274# Copying the HTML help docs
275for f in findall(media_dir):
276    if not ".svn" in f:
277        data_files.append(("media", [f]))
278
279# Copying the sample data user data
280for f in findall(test_1d_dir):
281    if not ".svn" in f:
282        data_files.append(("test\\1d_data", [f]))
283
284# Copying the sample data user data
285for f in findall(test_2d_dir):
286    if not ".svn" in f:
287        data_files.append(("test\\2d_data", [f]))
288
289# Copying the sample data user data
290for f in findall(test_save_dir):
291    if not ".svn" in f:
292        data_files.append(("test\\save_states", [f]))
293
294# Copying the sample data user data
295for f in findall(test_upcoming_dir):
296    if not ".svn" in f:
297        data_files.append(("test\\upcoming_formats", [f]))
298
299# Copying opencl include files
300for f in findall(opencl_include_dir):
301    data_files.append(("includes\\pyopencl",[f]))
302
303# See if the documentation has been built, and if so include it.
304doc_path = os.path.join(build_path, "doc")
305if os.path.exists(doc_path):
306    for dirpath, dirnames, filenames in os.walk(doc_path):
307        for filename in filenames:
308            sub_dir = os.path.join("doc", os.path.relpath(dirpath, doc_path))
309            data_files.append((sub_dir, [os.path.join(dirpath, filename)]))
310else:
311    raise Exception("You must first build the documentation before creating an installer.")
312
313if msvcrtdll_data_files is not None:
314    # install the MSVC 9 runtime dll's into the application folder
315    data_files.append(msvcrtdll_data_files)
316
317# NOTE:
318#  need an empty __init__.py in site-packages/numpy/distutils/tests and site-packages/mpl_toolkits
319
320# packages
321#
322packages = [
323    'matplotlib', 'scipy', 'encodings', 'comtypes', 'h5py',
324    'win32com', 'xhtml2pdf', 'bumps','sasmodels', 'sas',
325    ]
326packages.extend([
327    'reportlab',
328    'reportlab.graphics.charts',
329    'reportlab.graphics.samples',
330    'reportlab.graphics.widgets',
331    'reportlab.graphics.barcode',
332    'reportlab.graphics',
333    'reportlab.lib',
334    'reportlab.pdfbase',
335    'reportlab.pdfgen',
336    'reportlab.platypus',
337    ])
338packages.append('periodictable.core') # not found automatically
339#packages.append('IPython')
340includes = ['site', 'lxml._elementpath', 'lxml.etree']
341
342if tinycc:
343    packages.append('tinycc')
344
345# Exclude packages that are not needed but are often found on build systems
346excludes = ['Tkinter', 'PyQt4', '_tkagg', 'sip', 'pytz', 'sympy']
347
348
349dll_excludes = [
350    # Various matplotlib backends we are not using
351    'libgdk_pixbuf-2.0-0.dll', 'libgobject-2.0-0.dll', 'libgdk-win32-2.0-0.dll',
352    'tcl84.dll', 'tk84.dll', 'QtGui4.dll', 'QtCore4.dll',
353    # numpy 1.8 openmp bindings (still seems to use all the cores without them)
354    #'libiomp5md.dll', 'libifcoremd.dll', 'libmmd.dll', 'svml_dispmd.dll','libifportMD.dll',
355    'numpy-atlas.dll',
356    # microsoft C runtime (not allowed to ship with the app; need to ship vcredist
357    'msvcp90.dll',
358    # 32-bit windows console piping
359    'w9xpopen.exe',
360    # accidental links to msys/cygwin binaries; shouldn't be needed
361    'cygwin1.dll',
362    # no need to distribute OpenCL.dll - users should have their own copy
363    'OpenCL.dll'
364    ]
365
366target_wx_client = Target(
367    description = 'SasView',
368    script = 'sasview.py',
369    icon_resources = [(1, os.path.join(images_dir, "ball.ico"))],
370    other_resources = [(24, 1, manifest)],
371    dest_base = "SasView"
372    )
373
374bundle_option = 2
375if is_64bits:
376    bundle_option = 3
377generate_installer()
378#initialize category stuff
379#from sas.sasgui.guiframe.CategoryInstaller import CategoryInstaller
380#CategoryInstaller.check_install(s)
381
382setup(
383    windows=[target_wx_client],
384    console=[],
385    options={
386        'py2exe': {
387            'dll_excludes': dll_excludes,
388            'packages': packages,
389            'includes': includes,
390            'excludes': excludes,
391            "compressed": 1,
392            "optimize": 0,
393            "bundle_files": bundle_option,
394            },
395    },
396    data_files=data_files,
397)
Note: See TracBrowser for help on using the repository browser.