source: sasview/setup.py @ f028ca9

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.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since f028ca9 was f3bf622, checked in by andyfaff, 7 years ago

MAINT: remove has_key occurences

  • Property mode set to 100755
File size: 13.8 KB
Line 
1"""
2    Setup for SasView
3    #TODO: Add checks to see that all the dependencies are on the system
4"""
5import sys
6import os
7import shutil
8from setuptools import setup, Extension
9from distutils.command.build_ext import build_ext
10from distutils.core import Command
11import numpy as np
12
13# Manage version number ######################################
14import sasview
15VERSION = sasview.__version__
16##############################################################
17
18package_dir = {}
19package_data = {}
20packages = []
21ext_modules = []
22
23# Remove all files that should be updated by this setup
24# We do this here because application updates these files from .sasview
25# except when there is no such file
26# Todo : make this list generic
27#plugin_model_list = ['polynominal5.py', 'sph_bessel_jn.py',
28#                      'sum_Ap1_1_Ap2.py', 'sum_p1_p2.py',
29#                      'testmodel_2.py', 'testmodel.py',
30#                      'polynominal5.pyc', 'sph_bessel_jn.pyc',
31#                      'sum_Ap1_1_Ap2.pyc', 'sum_p1_p2.pyc',
32#                      'testmodel_2.pyc', 'testmodel.pyc', 'plugins.log']
33
34CURRENT_SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
35SASVIEW_BUILD = os.path.join(CURRENT_SCRIPT_DIR, "build")
36
37sas_dir = os.path.join(os.path.expanduser("~"),'.sasview')
38if os.path.isdir(sas_dir):
39    f_path = os.path.join(sas_dir, "sasview.log")
40    if os.path.isfile(f_path):
41        os.remove(f_path)
42    f_path = os.path.join(sas_dir, "categories.json")
43    if os.path.isfile(f_path):
44        os.remove(f_path)
45    f_path = os.path.join(sas_dir, 'config', "custom_config.py")
46    if os.path.isfile(f_path):
47        os.remove(f_path)
48    #f_path = os.path.join(sas_dir, 'plugin_models')
49    #if os.path.isdir(f_path):
50    #     for f in os.listdir(f_path):
51    #         if f in plugin_model_list:
52    #             file_path =  os.path.join(f_path, f)
53    #             os.remove(file_path)
54    if os.path.exists(SASVIEW_BUILD):
55        print("Removing existing build directory", SASVIEW_BUILD, "for a clean build")
56        shutil.rmtree(SASVIEW_BUILD)
57
58# 'sys.maxsize' and 64bit: Not supported for python2.5
59is_64bits = False
60if sys.version_info >= (2, 6):
61    is_64bits = sys.maxsize > 2**32
62
63enable_openmp = False
64
65if sys.platform =='darwin':
66    if not is_64bits:
67        # Disable OpenMP
68        enable_openmp = False
69    else:
70        # Newer versions of Darwin don't support openmp
71        try:
72            darwin_ver = int(os.uname()[2].split('.')[0])
73            if darwin_ver >= 12:
74                enable_openmp = False
75        except:
76            print("PROBLEM determining Darwin version")
77
78# Options to enable OpenMP
79copt =  {'msvc': ['/openmp'],
80         'mingw32' : ['-fopenmp'],
81         'unix' : ['-fopenmp']}
82lopt =  {'msvc': ['/MANIFEST'],
83         'mingw32' : ['-fopenmp'],
84         'unix' : ['-lgomp']}
85
86# Platform-specific link options
87platform_lopt = {'msvc' : ['/MANIFEST']}
88platform_copt = {}
89
90# Set copts to get compile working on OS X >= 10.9 using clang
91if sys.platform =='darwin':
92    try:
93        darwin_ver = int(os.uname()[2].split('.')[0])
94        if darwin_ver >= 13 and darwin_ver < 14:
95            platform_copt = {'unix' : ['-Wno-error=unused-command-line-argument-hard-error-in-future']}
96    except:
97        print("PROBLEM determining Darwin version")
98
99class DisableOpenMPCommand(Command):
100    description = "The version of MinGW that comes with Anaconda does not come with OpenMP :( "\
101                  "This commands means we can turn off compiling with OpenMP for this or any "\
102                  "other reason."
103    user_options = []
104
105    def initialize_options(self):
106        self.cwd = None
107
108    def finalize_options(self):
109        self.cwd = os.getcwd()
110        global enable_openmp
111        enable_openmp = False
112
113    def run(self):
114        pass
115
116class build_ext_subclass( build_ext ):
117    def build_extensions(self):
118        # Get 64-bitness
119        c = self.compiler.compiler_type
120        print("Compiling with %s (64bit=%s)" % (c, str(is_64bits)))
121
122        # OpenMP build options
123        if enable_openmp:
124            if c in copt:
125                for e in self.extensions:
126                    e.extra_compile_args = copt[ c ]
127            if c in lopt:
128                for e in self.extensions:
129                    e.extra_link_args = lopt[ c ]
130
131        # Platform-specific build options
132        if c in platform_lopt:
133            for e in self.extensions:
134                e.extra_link_args = platform_lopt[ c ]
135
136        if c in platform_copt:
137            for e in self.extensions:
138                e.extra_compile_args = platform_copt[ c ]
139
140
141        build_ext.build_extensions(self)
142
143class BuildSphinxCommand(Command):
144    description = "Build Sphinx documentation."
145    user_options = []
146
147    def initialize_options(self):
148        self.cwd = None
149
150    def finalize_options(self):
151        self.cwd = os.getcwd()
152
153    def run(self):
154        sys.path.append("docs/sphinx-docs")
155        import build_sphinx
156        build_sphinx.rebuild()
157
158# sas module
159package_dir["sas"] = os.path.join("src", "sas")
160packages.append("sas")
161
162# sas module
163package_dir["sas.sasgui"] = os.path.join("src", "sas", "sasgui")
164packages.append("sas.sasgui")
165
166# sas module
167package_dir["sas.sascalc"] = os.path.join("src", "sas", "sascalc")
168packages.append("sas.sascalc")
169
170# sas.sascalc.invariant
171package_dir["sas.sascalc.invariant"] = os.path.join("src", "sas", "sascalc", "invariant")
172packages.extend(["sas.sascalc.invariant"])
173
174# sas.sasgui.guiframe
175guiframe_path = os.path.join("src", "sas", "sasgui", "guiframe")
176package_dir["sas.sasgui.guiframe"] = guiframe_path
177package_dir["sas.sasgui.guiframe.local_perspectives"] = os.path.join(os.path.join(guiframe_path, "local_perspectives"))
178package_data["sas.sasgui.guiframe"] = ['images/*', 'media/*']
179packages.extend(["sas.sasgui.guiframe", "sas.sasgui.guiframe.local_perspectives"])
180# build local plugin
181for d in os.listdir(os.path.join(guiframe_path, "local_perspectives")):
182    if d not in ['.svn','__init__.py', '__init__.pyc']:
183        package_name = "sas.sasgui.guiframe.local_perspectives." + d
184        packages.append(package_name)
185        package_dir[package_name] = os.path.join(guiframe_path, "local_perspectives", d)
186
187# sas.sascalc.dataloader
188package_dir["sas.sascalc.dataloader"] = os.path.join("src", "sas", "sascalc", "dataloader")
189package_data["sas.sascalc.dataloader.readers"] = ['defaults.json','schema/*.xsd']
190packages.extend(["sas.sascalc.dataloader","sas.sascalc.dataloader.readers","sas.sascalc.dataloader.readers.schema"])
191
192# sas.sascalc.calculator
193gen_dir = os.path.join("src", "sas", "sascalc", "calculator", "c_extensions")
194package_dir["sas.sascalc.calculator.core"] = gen_dir
195package_dir["sas.sascalc.calculator"] = os.path.join("src", "sas", "sascalc", "calculator")
196packages.extend(["sas.sascalc.calculator","sas.sascalc.calculator.core"])
197ext_modules.append( Extension("sas.sascalc.calculator.core.sld2i",
198        sources = [
199            os.path.join(gen_dir, "sld2i_module.cpp"),
200            os.path.join(gen_dir, "sld2i.cpp"),
201            os.path.join(gen_dir, "libfunc.c"),
202            os.path.join(gen_dir, "librefl.c"),
203        ],
204        include_dirs=[gen_dir],
205    )
206)
207
208# sas.sascalc.pr
209srcdir  = os.path.join("src", "sas", "sascalc", "pr", "c_extensions")
210package_dir["sas.sascalc.pr.core"] = srcdir
211package_dir["sas.sascalc.pr"] = os.path.join("src","sas", "sascalc", "pr")
212packages.extend(["sas.sascalc.pr","sas.sascalc.pr.core"])
213ext_modules.append( Extension("sas.sascalc.pr.core.pr_inversion",
214                              sources = [os.path.join(srcdir, "Cinvertor.c"),
215                                         os.path.join(srcdir, "invertor.c"),
216                                         ],
217                              include_dirs=[],
218                              ) )
219
220# sas.sascalc.file_converter
221mydir = os.path.join("src", "sas", "sascalc", "file_converter", "c_ext")
222package_dir["sas.sascalc.file_converter.core"] = mydir
223package_dir["sas.sascalc.file_converter"] = os.path.join("src","sas", "sascalc", "file_converter")
224packages.extend(["sas.sascalc.file_converter","sas.sascalc.file_converter.core"])
225ext_modules.append( Extension("sas.sascalc.file_converter.core.bsl_loader",
226                              sources = [os.path.join(mydir, "bsl_loader.c")],
227                              include_dirs=[np.get_include()],
228                              ) )
229
230#sas.sascalc.corfunc
231package_dir["sas.sascalc.corfunc"] = os.path.join("src", "sas", "sascalc", "corfunc")
232packages.extend(["sas.sascalc.corfunc"])
233
234# sas.sascalc.fit
235package_dir["sas.sascalc.fit"] = os.path.join("src", "sas", "sascalc", "fit")
236packages.append("sas.sascalc.fit")
237
238# Perspectives
239package_dir["sas.sasgui.perspectives"] = os.path.join("src", "sas", "sasgui", "perspectives")
240package_dir["sas.sasgui.perspectives.pr"] = os.path.join("src", "sas", "sasgui", "perspectives", "pr")
241packages.extend(["sas.sasgui.perspectives","sas.sasgui.perspectives.pr"])
242package_data["sas.sasgui.perspectives.pr"] = ['media/*']
243
244package_dir["sas.sasgui.perspectives.invariant"] = os.path.join("src", "sas", "sasgui", "perspectives", "invariant")
245packages.extend(["sas.sasgui.perspectives.invariant"])
246package_data['sas.sasgui.perspectives.invariant'] = [os.path.join("media",'*')]
247
248package_dir["sas.sasgui.perspectives.fitting"] = os.path.join("src", "sas", "sasgui", "perspectives", "fitting")
249package_dir["sas.sasgui.perspectives.fitting.plugin_models"] = os.path.join("src", "sas", "sasgui", "perspectives", "fitting", "plugin_models")
250packages.extend(["sas.sasgui.perspectives.fitting", "sas.sasgui.perspectives.fitting.plugin_models"])
251package_data['sas.sasgui.perspectives.fitting'] = ['media/*', 'plugin_models/*']
252
253packages.extend(["sas.sasgui.perspectives", "sas.sasgui.perspectives.calculator"])
254package_data['sas.sasgui.perspectives.calculator'] = ['images/*', 'media/*']
255
256package_dir["sas.sasgui.perspectives.corfunc"] = os.path.join("src", "sas", "sasgui", "perspectives", "corfunc")
257packages.extend(["sas.sasgui.perspectives.corfunc"])
258package_data['sas.sasgui.perspectives.corfunc'] = ['media/*']
259
260package_dir["sas.sasgui.perspectives.file_converter"] = os.path.join("src", "sas", "sasgui", "perspectives", "file_converter")
261packages.extend(["sas.sasgui.perspectives.file_converter"])
262package_data['sas.sasgui.perspectives.file_converter'] = ['media/*']
263
264# Data util
265package_dir["sas.sascalc.data_util"] = os.path.join("src", "sas", "sascalc", "data_util")
266packages.append("sas.sascalc.data_util")
267
268# Plottools
269package_dir["sas.sasgui.plottools"] = os.path.join("src", "sas", "sasgui", "plottools")
270packages.append("sas.sasgui.plottools")
271
272# # Last of the sas.models
273# package_dir["sas.models"] = os.path.join("src", "sas", "models")
274# packages.append("sas.models")
275
276EXTENSIONS = [".c", ".cpp"]
277
278def append_file(file_list, dir_path):
279    """
280    Add sources file to sources
281    """
282    for f in os.listdir(dir_path):
283        if os.path.isfile(os.path.join(dir_path, f)):
284            _, ext = os.path.splitext(f)
285            if ext.lower() in EXTENSIONS:
286                file_list.append(os.path.join(dir_path, f))
287        elif os.path.isdir(os.path.join(dir_path, f)) and \
288                not f.startswith("."):
289            sub_dir = os.path.join(dir_path, f)
290            for new_f in os.listdir(sub_dir):
291                if os.path.isfile(os.path.join(sub_dir, new_f)):
292                    _, ext = os.path.splitext(new_f)
293                    if ext.lower() in EXTENSIONS:
294                        file_list.append(os.path.join(sub_dir, new_f))
295
296# Comment out the following to avoid rebuilding all the models
297file_sources = []
298append_file(file_sources, gen_dir)
299
300#Wojtek's hacky way to add doc files while bundling egg
301#def add_doc_files(directory):
302#    paths = []
303#    for (path, directories, filenames) in os.walk(directory):
304#        for filename in filenames:
305#            paths.append(os.path.join(path, filename))
306#    return paths
307
308#doc_files = add_doc_files('doc')
309
310# SasView
311package_dir["sas.sasview"] = "sasview"
312package_data['sas.sasview'] = ['images/*',
313                               'media/*',
314                               'test/*.txt',
315                               'test/1d_data/*',
316                               'test/2d_data/*',
317                               'test/convertible_files/*',
318                               'test/coordinate_data/*',
319                               'test/image_data/*',
320                               'test/media/*',
321                               'test/other_files/*',
322                               'test/save_states/*',
323                               'test/sesans_data/*'
324                               ]
325packages.append("sas.sasview")
326
327required = [
328    'bumps>=0.7.5.9', 'periodictable>=1.3.1', 'pyparsing<2.0.0',
329
330    # 'lxml>=2.2.2',
331    'lxml', 'h5py',
332
333    ## The following dependecies won't install automatically, so assume them
334    ## The numbers should be bumped up for matplotlib and wxPython as well.
335    # 'numpy>=1.4.1', 'scipy>=0.7.2', 'matplotlib>=0.99.1.1',
336    # 'wxPython>=2.8.11', 'pil',
337    ]
338
339if os.name=='nt':
340    required.extend(['html5lib', 'reportlab'])
341else:
342    # 'pil' is now called 'pillow'
343    required.extend(['pillow'])
344
345# Set up SasView
346setup(
347    name="sasview",
348    version = VERSION,
349    description = "SasView application",
350    author = "SasView Team",
351    author_email = "developers@sasview.org",
352    url = "http://sasview.org",
353    license = "PSF",
354    keywords = "small-angle x-ray and neutron scattering analysis",
355    download_url = "https://github.com/SasView/sasview.git",
356    package_dir = package_dir,
357    packages = packages,
358    package_data = package_data,
359    ext_modules = ext_modules,
360    install_requires = required,
361    zip_safe = False,
362    entry_points = {
363                    'console_scripts':[
364                                       "sasview = sas.sasview.sasview:run",
365                                       ]
366                    },
367    cmdclass = {'build_ext': build_ext_subclass,
368                'docs': BuildSphinxCommand,
369                'disable_openmp': DisableOpenMPCommand}
370    )
Note: See TracBrowser for help on using the repository browser.