source: sasview/sansview/setup_exe.py @ d4bb639

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 d4bb639 was 7f7e5f1, checked in by Jae Cho <jhjcho@…>, 15 years ago

corrected misspelling

  • Property mode set to 100644
File size: 3.7 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, sys
17from distutils.core import setup
18from distutils.filelist import findall
19import matplotlib
20import py2exe
21
22manifest = """
23   <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
24   <assembly xmlns="urn:schemas-microsoft-com:asm.v1"
25   manifestVersion="1.0">
26   <assemblyIdentity
27       version="0.64.1.0"
28       processorArchitecture="x86"
29       name="Controls"
30       type="win32"
31   />
32   <description>SansView</description>
33   <dependency>
34       <dependentAssembly>
35           <assemblyIdentity
36               type="win32"
37               name="Microsoft.Windows.Common-Controls"
38               version="6.0.0.0"
39               processorArchitecture="X86"
40               publicKeyToken="6595b64144ccf1df"
41               language="*"
42           />
43       </dependentAssembly>
44   </dependency>
45   </assembly>
46  """
47
48   
49class Target:
50    def __init__(self, **kw):
51        self.__dict__.update(kw)
52        # for the versioninfo resources
53        self.version = "0.9.1"
54        self.company_name = "U Tennessee"
55        self.copyright = "copyright 2009"
56        self.name = "SansView"
57       
58#
59# Adapted from http://www.py2exe.org/index.cgi/MatPlotLib
60# to use the MatPlotLib.
61#
62matplotlibdatadir = matplotlib.get_data_path()
63matplotlibdata = findall(matplotlibdatadir)
64data_files = []
65
66for f in matplotlibdata:
67    dirname = os.path.join('mpl-data', f[len(matplotlibdatadir)+1:])
68    data_files.append((os.path.split(dirname)[0], [f]))
69
70# Copy the settings file for the DataLoader file extension associations
71import DataLoader.readers
72f = os.path.join(DataLoader.readers.get_data_path(),'defaults.xml')
73if os.path.isfile(f):
74    data_files.append(('.', [f]))
75
76# Copying the images directory to the distribution directory.
77for f in findall('images'):
78    if os.path.split(f)[0].count('.svn')==0:
79        data_files.append((os.path.split(f)[0], [f]))
80
81# Copying the HTML help docs
82for f in findall('doc'):
83    if os.path.split(f)[0].count('.svn')==0:
84        data_files.append((os.path.split(f)[0], [f]))
85
86# Copying the sample data user data
87for f in findall('test'):
88    if os.path.split(f)[0].count('.svn')==0:
89        data_files.append((os.path.split(f)[0], [f]))
90       
91# Copying the sample data user data
92for f in findall('plugins'):
93    if os.path.split(f)[0].count('.svn')==0:
94        data_files.append((os.path.split(f)[0], [f]))
95
96   
97#
98# packages
99#
100packages = ['matplotlib', 'pytz','encodings']
101includes = []
102excludes = [] 
103
104dll_excludes = [
105    'libgdk_pixbuf-2.0-0.dll', 
106    'libgobject-2.0-0.dll',
107    'libgdk-win32-2.0-0.dll',
108    ]
109
110target_wx_client = Target(
111    description = 'SansView',
112    script = 'sansview.py',
113    icon_resources = [(1, "images/ball.ico")],
114    other_resources = [(24,1,manifest)],
115    dest_base = "SansView"
116    )
117
118
119
120setup(
121    windows=[target_wx_client],
122    console=[],
123   
124    options={
125        'py2exe': {
126            'dll_excludes': dll_excludes,
127            'packages' : packages,
128            'includes':includes,
129            'excludes':excludes,
130            "compressed": 1,
131            "optimize": 0,
132            "bundle_files":2,
133            },
134    },
135    data_files=data_files
136   
137)
138
139
Note: See TracBrowser for help on using the repository browser.