source: sasview/sasview/setup_exe.py @ 5f6336f

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.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 5f6336f was a7c4ad2, checked in by trnielsen, 8 years ago

Fixed some Windows issues for setupSasView.exe by reversing earlier commits

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