source: sasview/sansview/setup_exe.py @ c03b780

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 c03b780 was 8cd029b, checked in by Gervaise Alina <gervyh@…>, 14 years ago

add guiframe images in sansview.exe

  • Property mode set to 100644
File size: 4.7 KB
RevLine 
[b30f001]1#!/usr/bin/env python
2
3#
[365a17f6]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.
[b30f001]7#
[365a17f6]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.
[b30f001]15
16import os, sys
[698a734]17
[3d01a1e]18# When using the SansView build script, we need to be able to pass
[5b78566]19# an extra path to be added to the python path. The extra arguments
20# should be removed from the list so that the setup processing doesn't
21# fail.
[3d01a1e]22try:
[5b78566]23    if sys.argv.count('--extrapath'):
24        path_flag_idx = sys.argv.index('--extrapath')
25        extra_path = sys.argv[path_flag_idx+1]
26        sys.path.insert(0, extra_path)
27        del sys.argv[path_flag_idx+1]
28        sys.argv.remove('--extrapath')
[3d01a1e]29except:
[5b78566]30    print "Error processing extra python path needed to build SansView\n  %s" % sys.exc_value
[3d01a1e]31
[b30f001]32from distutils.core import setup
33from distutils.filelist import findall
34import matplotlib
35import py2exe
36
37manifest = """
38   <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
39   <assembly xmlns="urn:schemas-microsoft-com:asm.v1"
40   manifestVersion="1.0">
41   <assemblyIdentity
42       version="0.64.1.0"
43       processorArchitecture="x86"
44       name="Controls"
45       type="win32"
46   />
[365a17f6]47   <description>SansView</description>
[b30f001]48   <dependency>
49       <dependentAssembly>
50           <assemblyIdentity
51               type="win32"
52               name="Microsoft.Windows.Common-Controls"
53               version="6.0.0.0"
54               processorArchitecture="X86"
55               publicKeyToken="6595b64144ccf1df"
56               language="*"
57           />
58       </dependentAssembly>
59   </dependency>
60   </assembly>
61  """
62
63   
64class Target:
65    def __init__(self, **kw):
66        self.__dict__.update(kw)
67        # for the versioninfo resources
[2f793ae]68        self.version = "1.3.1"
[b30f001]69        self.company_name = "U Tennessee"
[c9795f6]70        self.copyright = "copyright 2009"
[365a17f6]71        self.name = "SansView"
[b30f001]72       
73#
74# Adapted from http://www.py2exe.org/index.cgi/MatPlotLib
75# to use the MatPlotLib.
76#
77matplotlibdatadir = matplotlib.get_data_path()
78matplotlibdata = findall(matplotlibdatadir)
[365a17f6]79data_files = []
[a90a3c84]80# Copying SLD data
[c93cc15]81import periodictable
[cc1500d]82import logging
[c93cc15]83data_files += periodictable.data_files()
84
[698a734]85import sans.perspectives.calculator as calculator
86data_files += calculator.data_files()
87
88import sans.perspectives.invariant as invariant
89data_files += invariant.data_files()
[8cd029b]90import sans.guiframe as guiframe
91data_files += guiframe.data_files()
[c93cc15]92
[b30f001]93for f in matplotlibdata:
[365a17f6]94    dirname = os.path.join('mpl-data', f[len(matplotlibdatadir)+1:])
95    data_files.append((os.path.split(dirname)[0], [f]))
[b30f001]96
[25b9c26d]97# Copy the settings file for the DataLoader file extension associations
98import DataLoader.readers
99f = os.path.join(DataLoader.readers.get_data_path(),'defaults.xml')
100if os.path.isfile(f):
101    data_files.append(('.', [f]))
102
[365a17f6]103# Copying the images directory to the distribution directory.
104for f in findall('images'):
105    if os.path.split(f)[0].count('.svn')==0:
106        data_files.append((os.path.split(f)[0], [f]))
[d35420d]107
108# Copying the HTML help docs
[e5d76ce]109for f in findall('media'):
[d35420d]110    if os.path.split(f)[0].count('.svn')==0:
111        data_files.append((os.path.split(f)[0], [f]))
[e284116]112
113# Copying the sample data user data
114for f in findall('test'):
115    if os.path.split(f)[0].count('.svn')==0:
116        data_files.append((os.path.split(f)[0], [f]))
[1b16714f]117       
118# Copying the sample data user data
119for f in findall('plugins'):
120    if os.path.split(f)[0].count('.svn')==0:
121        data_files.append((os.path.split(f)[0], [f]))
[e284116]122
[365a17f6]123   
[b30f001]124#
125# packages
126#
[3c939e5]127packages = ['matplotlib', 'pytz','encodings']
[b30f001]128includes = []
[365a17f6]129excludes = [] 
[b30f001]130
131dll_excludes = [
132    'libgdk_pixbuf-2.0-0.dll', 
133    'libgobject-2.0-0.dll',
134    'libgdk-win32-2.0-0.dll',
135    ]
136
137target_wx_client = Target(
[7f7e5f1]138    description = 'SansView',
[b30f001]139    script = 'sansview.py',
140    icon_resources = [(1, "images/ball.ico")],
141    other_resources = [(24,1,manifest)],
[365a17f6]142    dest_base = "SansView"
[b30f001]143    )
144
145
146
147setup(
148    windows=[target_wx_client],
149    console=[],
150   
151    options={
152        'py2exe': {
153            'dll_excludes': dll_excludes,
154            'packages' : packages,
155            'includes':includes,
156            'excludes':excludes,
157            "compressed": 1,
158            "optimize": 0,
159            "bundle_files":2,
160            },
161    },
[c93cc15]162    data_files=data_files,
[b30f001]163   
164)
165
166
Note: See TracBrowser for help on using the repository browser.