source: sasview/sasview/setup_exe.py @ b699768

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 b699768 was b699768, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 8 years ago

Initial commit of the refactored SasCalc? module.

  • Property mode set to 100644
File size: 13.2 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.perspectives.fitting as fitting
247data_files += fitting.data_files()
248
249import sas.perspectives.calculator as calculator
250data_files += calculator.data_files()
251
252import sas.perspectives.invariant as invariant
253data_files += invariant.data_files()
254
255import sas.guiframe as guiframe
256data_files += guiframe.data_files()
257
258import sas.models as models
259data_files += models.data_files()
260
261for f in matplotlibdata:
262    dirname = os.path.join('mpl-data', f[len(matplotlibdatadir)+1:])
263    data_files.append((os.path.split(dirname)[0], [f]))
264
265# Copy the settings file for the sas.dataloader file extension associations
266import sas.sascalc.dataloader.readers
267f = os.path.join(sas.dataloader.readers.get_data_path(), 'defaults.json')
268if os.path.isfile(f):
269    data_files.append(('.', [f]))
270f = 'custom_config.py'
271if os.path.isfile(f):
272    data_files.append(('.', [f]))
273    data_files.append(('config', [f]))
274f = 'local_config.py'
275if os.path.isfile(f):
276    data_files.append(('.', [f]))
277
278f = 'default_categories.json'
279if os.path.isfile(f):
280    data_files.append(('.', [f]))
281   
282if os.path.isfile("BUILD_NUMBER"):
283    data_files.append(('.', ["BUILD_NUMBER"]))
284
285# Copying the images directory to the distribution directory.
286for f in findall(images_dir):
287    if not ".svn" in f:
288        data_files.append(("images", [f]))
289
290# Copying the HTML help docs
291for f in findall(media_dir):
292    if not ".svn" in f:
293        data_files.append(("media", [f]))
294
295# Copying the sample data user data
296for f in findall(test_1d_dir):
297    if not ".svn" in f:
298        data_files.append(("test\\1d_data", [f]))
299
300# Copying the sample data user data
301for f in findall(test_2d_dir):
302    if not ".svn" in f:
303        data_files.append(("test\\2d_data", [f]))
304
305# Copying the sample data user data
306for f in findall(test_save_dir):
307    if not ".svn" in f:
308        data_files.append(("test\\save_states", [f]))
309
310# Copying the sample data user data
311for f in findall(test_upcoming_dir):
312    if not ".svn" in f:
313        data_files.append(("test\\upcoming_formats", [f]))
314
315
316# See if the documentation has been built, and if so include it.
317doc_path = os.path.join(build_path, "doc")
318if os.path.exists(doc_path):
319    for dirpath, dirnames, filenames in os.walk(doc_path):
320        for filename in filenames:
321            sub_dir = os.path.join("doc", os.path.relpath(dirpath, doc_path))
322            data_files.append((sub_dir, [os.path.join(dirpath, filename)]))
323else:
324    raise Exception("You must first build the documentation before creating an installer.")
325
326if py26MSdll is not None:
327    # install the MSVC 9 runtime dll's into the application folder
328    data_files.append(("Microsoft.VC90.CRT", py26MSdll))
329if py26MSdll_x86 is not None:
330    # install the MSVC 9 runtime dll's into the application folder
331    data_files.append(("Microsoft.VC90.CRT", py26MSdll_x86))
332
333# NOTE:
334#  need an empty __init__.py in site-packages/numpy/distutils/tests and site-packages/mpl_toolkits
335
336# packages
337#
338packages = [
339    'matplotlib', 'scipy', 'encodings', 'comtypes',
340    'win32com', 'xhtml2pdf', 'bumps',
341    ]
342packages.extend([
343    'reportlab',
344    'reportlab.graphics.charts',
345    'reportlab.graphics.samples',
346    'reportlab.graphics.widgets',
347    'reportlab.graphics.barcode',
348    'reportlab.graphics',
349    'reportlab.lib',
350    'reportlab.pdfbase',
351    'reportlab.pdfgen',
352    'reportlab.platypus',
353    ])
354packages.append('periodictable.core') # not found automatically
355#packages.append('IPython')
356includes = ['site', 'lxml._elementpath', 'lxml.etree']
357
358# Exclude packages that are not needed but are often found on build systems
359excludes = ['Tkinter', 'PyQt4', '_tkagg', 'sip', 'pytz']
360
361
362dll_excludes = [
363    # Various matplotlib backends we are not using
364    'libgdk_pixbuf-2.0-0.dll', 'libgobject-2.0-0.dll', 'libgdk-win32-2.0-0.dll',
365    'tcl84.dll', 'tk84.dll', 'QtGui4.dll', 'QtCore4.dll',
366    # numpy 1.8 openmp bindings (still seems to use all the cores without them)
367    'libiomp5md.dll', 'libifcoremd.dll', 'libmmd.dll', 'svml_dispmd.dll','libifportMD.dll',
368    # microsoft C runtime (not allowed to ship with the app; need to ship vcredist
369    'msvcp90.dll',
370    # 32-bit windows console piping
371    'w9xpopen.exe',
372    # accidental links to msys/cygwin binaries; shouldn't be needed
373    'cygwin1.dll',
374    ]
375
376target_wx_client = Target(
377    description = 'SasView',
378    script = 'sasview.py',
379    icon_resources = [(1, os.path.join(images_dir, "ball.ico"))],
380    other_resources = [(24, 1, manifest)],
381    dest_base = "SasView"
382    )
383
384bundle_option = 2
385if is_64bits:
386    bundle_option = 3
387import installer_generator as gen
388gen.generate_installer()
389#initialize category stuff
390#from sas.guiframe.CategoryInstaller import CategoryInstaller
391#CategoryInstaller.check_install(s)
392
393setup(
394    windows=[target_wx_client],
395    console=[],
396    options={
397        'py2exe': {
398            'dll_excludes': dll_excludes,
399            'packages': packages,
400            'includes': includes,
401            'excludes': excludes,
402            "compressed": 1,
403            "optimize": 0,
404            "bundle_files": bundle_option,
405            },
406    },
407    data_files=data_files,
408)
Note: See TracBrowser for help on using the repository browser.