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 | |
---|
16 | import os, sys |
---|
17 | from distutils.core import setup |
---|
18 | from distutils.filelist import findall |
---|
19 | import matplotlib |
---|
20 | import py2exe |
---|
21 | |
---|
22 | manifest = """ |
---|
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 | |
---|
49 | class Target: |
---|
50 | def __init__(self, **kw): |
---|
51 | self.__dict__.update(kw) |
---|
52 | # for the versioninfo resources |
---|
53 | self.version = "0.9" |
---|
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 | # |
---|
62 | matplotlibdatadir = matplotlib.get_data_path() |
---|
63 | matplotlibdata = findall(matplotlibdatadir) |
---|
64 | data_files = [] |
---|
65 | |
---|
66 | for 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 |
---|
71 | import DataLoader.readers |
---|
72 | f = os.path.join(DataLoader.readers.get_data_path(),'defaults.xml') |
---|
73 | if os.path.isfile(f): |
---|
74 | data_files.append(('.', [f])) |
---|
75 | |
---|
76 | # Copying the images directory to the distribution directory. |
---|
77 | for 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 |
---|
82 | for 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 |
---|
87 | for 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 | |
---|
92 | # |
---|
93 | # packages |
---|
94 | # |
---|
95 | packages = ['matplotlib', 'pytz'] |
---|
96 | includes = [] |
---|
97 | excludes = [] |
---|
98 | |
---|
99 | dll_excludes = [ |
---|
100 | 'libgdk_pixbuf-2.0-0.dll', |
---|
101 | 'libgobject-2.0-0.dll', |
---|
102 | 'libgdk-win32-2.0-0.dll', |
---|
103 | ] |
---|
104 | |
---|
105 | target_wx_client = Target( |
---|
106 | description = 'SanView', |
---|
107 | script = 'sansview.py', |
---|
108 | icon_resources = [(1, "images/ball.ico")], |
---|
109 | other_resources = [(24,1,manifest)], |
---|
110 | dest_base = "SansView" |
---|
111 | ) |
---|
112 | |
---|
113 | |
---|
114 | |
---|
115 | setup( |
---|
116 | windows=[target_wx_client], |
---|
117 | console=[], |
---|
118 | |
---|
119 | options={ |
---|
120 | 'py2exe': { |
---|
121 | 'dll_excludes': dll_excludes, |
---|
122 | 'packages' : packages, |
---|
123 | 'includes':includes, |
---|
124 | 'excludes':excludes, |
---|
125 | "compressed": 1, |
---|
126 | "optimize": 0, |
---|
127 | "bundle_files":2, |
---|
128 | }, |
---|
129 | }, |
---|
130 | data_files=data_files |
---|
131 | |
---|
132 | ) |
---|
133 | |
---|
134 | |
---|