source: sasview/sansview/setup_mac.py @ 32122c0

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 32122c0 was 32122c0, checked in by Mathieu Doucet <doucetm@…>, 12 years ago

Re #5 fixing mac build

  • Property mode set to 100644
File size: 3.9 KB
Line 
1"""
2This is a setup.py script partly generated by py2applet
3
4Usage:
5    python setup.py py2app
6   
7   
8NOTES:
9   12/01/2011: When seeing an error related to pytz.zoneinfo not being found, change the following line in py2app/recipes/matplotlib.py
10               mf.import_hook('pytz.tzinfo', m, ['UTC'])
11   12/05/2011: Generally needs a recent version of macholib, modulegraph, and altgraph (through easy_install) on OSX >= 10.6
12"""
13from setuptools import setup
14import periodictable.xsf
15import sans.dataloader.readers 
16from distutils.sysconfig import get_python_lib
17import os
18import string
19import local_config
20import pytz
21import sys
22import platform
23
24ICON = local_config.SetupIconFile_mac
25EXTENSIONS_LIST = []
26DATA_FILES = []
27RESOURCES_FILES = []
28
29#Periodictable data file
30DATA_FILES = periodictable.data_files()
31#invariant and calculator help doc
32import sans.perspectives.fitting as fitting
33DATA_FILES += fitting.data_files()
34import sans.perspectives.calculator as calculator
35DATA_FILES += calculator.data_files()
36import sans.perspectives.invariant as invariant
37DATA_FILES += invariant.data_files()
38import sans.models as models
39DATA_FILES += models.data_files()
40import sans.guiframe as guiframe
41DATA_FILES += guiframe.data_files()
42
43#CANSAxml reader data files
44RESOURCES_FILES.append(os.path.join(sans.dataloader.readers.get_data_path(),'defaults.xml'))
45
46# Locate libxml2 library
47lib_locs = ['/usr/local/lib', '/usr/lib']
48libxml_path = None
49for item in lib_locs:
50    libxml_path_test = '%s/libxml2.2.dylib' % item
51    if os.path.isfile(libxml_path_test): 
52        libxml_path = libxml_path_test
53if libxml_path == None:
54    raise RuntimeError, "Could not find libxml2 on the system"
55
56APP = ['sansview.py']
57DATA_FILES += ['images','test','plugins','media', 'custom_config.py', 'local_config.py']
58# locate file extensions
59def find_extension():
60    """
61    Describe the extensions that can be read by the current application
62    """
63    try:
64        list = []
65        EXCEPTION_LIST = ['*', '.', '']
66        from sans.dataloader.loader import Loader
67        wild_cards = Loader().get_wildcards()
68        for item in wild_cards:
69            #['All (*.*)|*.*']
70            file_type, ext = string.split(item, "|*.", 1)
71            if ext.strip() not in EXCEPTION_LIST and ext.strip() not in list:
72                list.append(ext)
73    except:
74        print sys.exc_value
75       
76    try:
77        file_type, ext = string.split(local_config.APPLICATION_WLIST, "|*.", 1)
78        if ext.strip() not in EXCEPTION_LIST and ext.strip() not in list:
79            list.append(ext)
80    except:
81        print sys.exc_value
82       
83    try:
84        for item in local_config.PLUGINS_WLIST:
85            file_type, ext = string.split(item, "|*.", 1)
86            if ext.strip() not in EXCEPTION_LIST and ext.strip() not in list:
87                list.append(ext) 
88    except:
89        print sys.exc_value
90   
91    return list
92
93EXTENSIONS_LIST = find_extension()
94
95 
96plist = dict(CFBundleDocumentTypes=[dict(CFBundleTypeExtensions=EXTENSIONS_LIST,
97                                         CFBundleTypeIconFile=ICON,
98                                   CFBundleTypeName="sansview file",
99                                   CFBundleTypeRole="Shell" )],)
100
101APP = ['sansview.py']
102DATA_FILES += ['images','test','plugins','media']
103
104EXCLUDES = ['PyQt4', 'sip', 'QtGui']
105
106OPTIONS = {'packages': ['lxml','numpy', 'scipy', 'pytz', 'encodings'],
107           'iconfile': ICON,
108           'frameworks':[libxml_path],
109           'resources': RESOURCES_FILES,
110           'plist':plist,
111           'excludes' : EXCLUDES,
112           }
113
114# Cross-platform applications generally expect sys.argv to
115# be used for opening files. This requires argv_emulation = True
116# ---> argv_emulation is not supported for 64-bit apps
117print platform.architecture()[0]
118#if not platform.architecture()[0] == '64bit':
119#    OPTIONS['argv_emulation'] = True
120
121setup(
122    app=APP,
123    data_files=DATA_FILES,
124    include_package_data= True,
125    options={'py2app': OPTIONS},
126    setup_requires=['py2app'],
127)
Note: See TracBrowser for help on using the repository browser.