source: sasview/setup.py @ 3aa3351

ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change on this file since 3aa3351 was 417c03f, checked in by Piotr Rozyczko <rozyczko@…>, 6 years ago

Moved RST files around and modified sphinx config to use them. SASVIEW-927

  • Property mode set to 100755
File size: 18.5 KB
Line 
1# -*- coding: utf-8 -*-
2#!/usr/bin/env python
3
4"""
5    Setup for SasView
6    TODO: Add checks to see that all the dependencies are on the system
7"""
8from __future__ import print_function
9
10import os
11import subprocess
12import shutil
13import sys
14from distutils.command.build_ext import build_ext
15from distutils.core import Command
16
17import numpy as np
18from setuptools import Extension, setup
19
20# Manage version number ######################################
21with open(os.path.join("src", "sas", "sasview", "__init__.py")) as fid:
22    for line in fid:
23        if line.startswith('__version__'):
24            VERSION = line.split('"')[1]
25            break
26    else:
27        raise ValueError("Could not find version in src/sas/sasview/__init__.py")
28##############################################################
29
30package_dir = {}
31package_data = {}
32packages = []
33ext_modules = []
34
35# Remove all files that should be updated by this setup
36# We do this here because application updates these files from .sasview
37# except when there is no such file
38# Todo : make this list generic
39# plugin_model_list = ['polynominal5.py', 'sph_bessel_jn.py',
40#                      'sum_Ap1_1_Ap2.py', 'sum_p1_p2.py',
41#                      'testmodel_2.py', 'testmodel.py',
42#                      'polynominal5.pyc', 'sph_bessel_jn.pyc',
43#                      'sum_Ap1_1_Ap2.pyc', 'sum_p1_p2.pyc',
44#                      'testmodel_2.pyc', 'testmodel.pyc', 'plugins.log']
45
46CURRENT_SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
47SASVIEW_BUILD = os.path.join(CURRENT_SCRIPT_DIR, "build")
48
49# TODO: build step should not be messing with existing installation!!
50sas_dir = os.path.join(os.path.expanduser("~"), '.sasview')
51if os.path.isdir(sas_dir):
52    f_path = os.path.join(sas_dir, "sasview.log")
53    if os.path.isfile(f_path):
54        os.remove(f_path)
55    #f_path = os.path.join(sas_dir, "categories.json")
56    #if os.path.isfile(f_path):
57    #    os.remove(f_path)
58    f_path = os.path.join(sas_dir, 'config', "custom_config.py")
59    if os.path.isfile(f_path):
60        os.remove(f_path)
61    #f_path = os.path.join(sas_dir, 'plugin_models')
62    # if os.path.isdir(f_path):
63    #     for f in os.listdir(f_path):
64    #         if f in plugin_model_list:
65    #             file_path =  os.path.join(f_path, f)
66    #             os.remove(file_path)
67
68
69# Optionally clean before build.
70dont_clean = 'update' in sys.argv
71if dont_clean:
72    sys.argv.remove('update')
73elif os.path.exists(SASVIEW_BUILD):
74    print("Removing existing build directory", SASVIEW_BUILD, "for a clean build")
75    shutil.rmtree(SASVIEW_BUILD)
76
77# 'sys.maxsize' and 64bit: Not supported for python2.5
78is_64bits = sys.maxsize > 2**32
79
80enable_openmp = False
81if sys.platform == 'darwin':
82    if not is_64bits:
83        # Disable OpenMP
84        enable_openmp = False
85    else:
86        # Newer versions of Darwin don't support openmp
87        try:
88            darwin_ver = int(os.uname()[2].split('.')[0])
89            if darwin_ver >= 12:
90                enable_openmp = False
91        except:
92            print("PROBLEM determining Darwin version")
93
94# Options to enable OpenMP
95copt = {'msvc': ['/openmp'],
96        'mingw32': ['-fopenmp'],
97        'unix': ['-fopenmp']}
98lopt = {'msvc': ['/MANIFEST'],
99        'mingw32': ['-fopenmp'],
100        'unix': ['-lgomp']}
101
102# Platform-specific link options
103platform_lopt = {'msvc': ['/MANIFEST']}
104platform_copt = {}
105
106# Set copts to get compile working on OS X >= 10.9 using clang
107if sys.platform == 'darwin':
108    try:
109        darwin_ver = int(os.uname()[2].split('.')[0])
110        if darwin_ver >= 13 and darwin_ver < 14:
111            platform_copt = {
112                'unix': ['-Wno-error=unused-command-line-argument-hard-error-in-future']}
113    except:
114        print("PROBLEM determining Darwin version")
115
116
117class DisableOpenMPCommand(Command):
118    description = "The version of MinGW that comes with Anaconda does not come with OpenMP :( "\
119                  "This commands means we can turn off compiling with OpenMP for this or any "\
120                  "other reason."
121    user_options = []
122
123    def initialize_options(self):
124        self.cwd = None
125
126    def finalize_options(self):
127        self.cwd = os.getcwd()
128        global enable_openmp
129        enable_openmp = False
130
131    def run(self):
132        pass
133
134
135class build_ext_subclass(build_ext):
136    def build_extensions(self):
137        # Get 64-bitness
138        c = self.compiler.compiler_type
139        print("Compiling with %s (64bit=%s)" % (c, str(is_64bits)))
140
141        # OpenMP build options
142        if enable_openmp:
143            if c in copt:
144                for e in self.extensions:
145                    e.extra_compile_args = copt[c]
146            if c in lopt:
147                for e in self.extensions:
148                    e.extra_link_args = lopt[c]
149
150        # Platform-specific build options
151        if c in platform_lopt:
152            for e in self.extensions:
153                e.extra_link_args = platform_lopt[c]
154
155        if c in platform_copt:
156            for e in self.extensions:
157                e.extra_compile_args = platform_copt[c]
158
159        build_ext.build_extensions(self)
160
161
162class BuildSphinxCommand(Command):
163    description = "Build Sphinx documentation."
164    user_options = []
165
166    def initialize_options(self):
167        self.cwd = None
168
169    def finalize_options(self):
170        self.cwd = os.getcwd()
171
172    def run(self):
173        ''' First builds the sasmodels documentation if the directory
174        is present. Then builds the sasview docs.
175        '''
176        ### AJJ - Add code for building sasmodels docs here:
177        # check for doc path
178        SASMODELS_DOCPATH = os.path.abspath(os.path.join(os.getcwd(), '..', 'sasmodels', 'doc'))
179        print("========= check for sasmodels at", SASMODELS_DOCPATH, "============")
180        if os.path.exists(SASMODELS_DOCPATH):
181            if os.path.isdir(SASMODELS_DOCPATH):
182                # if available, build sasmodels docs
183                print("============= Building sasmodels model documentation ===============")
184                smdocbuild = subprocess.call(["make", "-C", SASMODELS_DOCPATH, "html"])
185        else:
186            # if not available warning message
187            print("== !!WARNING!! sasmodels directory not found. Cannot build model docs. ==")
188
189        #Now build sasview (+sasmodels) docs
190        sys.path.append("docs/sphinx-docs")
191        import build_sphinx
192        build_sphinx.rebuild()
193
194
195# sas module
196package_dir["sas"] = os.path.join("src", "sas")
197packages.append("sas")
198
199# sas module
200#package_dir["sas.sasgui"] = os.path.join("src", "sas", "sasgui")
201#packages.append("sas.sasgui")
202
203# qt module
204package_dir["sas.qtgui"] = os.path.join("src", "sas", "qtgui")
205packages.append("sas.qtgui")
206
207# sas module
208package_dir["sas.sascalc"] = os.path.join("src", "sas", "sascalc")
209packages.append("sas.sascalc")
210
211# sas.sascalc.invariant
212package_dir["sas.sascalc.invariant"] = os.path.join(
213    "src", "sas", "sascalc", "invariant")
214packages.extend(["sas.sascalc.invariant"])
215
216# sas.sasgui.guiframe
217# guiframe_path = os.path.join("src", "sas", "sasgui", "guiframe")
218# package_dir["sas.sasgui.guiframe"] = guiframe_path
219# package_dir["sas.sasgui.guiframe.local_perspectives"] = os.path.join(
220#     os.path.join(guiframe_path, "local_perspectives"))
221# package_data["sas.sasgui.guiframe"] = ['images/*', 'media/*']
222# packages.extend(
223#     ["sas.sasgui.guiframe", "sas.sasgui.guiframe.local_perspectives"])
224# # build local plugin
225# for d in os.listdir(os.path.join(guiframe_path, "local_perspectives")):
226#     if d not in ['.svn', '__init__.py', '__init__.pyc']:
227#         package_name = "sas.sasgui.guiframe.local_perspectives." + d
228#         packages.append(package_name)
229#         package_dir[package_name] = os.path.join(
230#             guiframe_path, "local_perspectives", d)
231
232# sas.sascalc.dataloader
233package_dir["sas.sascalc.dataloader"] = os.path.join(
234    "src", "sas", "sascalc", "dataloader")
235package_data["sas.sascalc.dataloader.readers"] = ['schema/*.xsd']
236packages.extend(["sas.sascalc.dataloader", "sas.sascalc.dataloader.readers",
237                 "sas.sascalc.dataloader.readers.schema"])
238
239
240# sas.sascalc.calculator
241gen_dir = os.path.join("src", "sas", "sascalc", "calculator", "c_extensions")
242package_dir["sas.sascalc.calculator.core"] = gen_dir
243package_dir["sas.sascalc.calculator"] = os.path.join(
244    "src", "sas", "sascalc", "calculator")
245packages.extend(["sas.sascalc.calculator", "sas.sascalc.calculator.core"])
246ext_modules.append(Extension("sas.sascalc.calculator.core.sld2i",
247                             sources=[
248                                 os.path.join(gen_dir, "sld2i_module.cpp"),
249                                 os.path.join(gen_dir, "sld2i.cpp"),
250                                 os.path.join(gen_dir, "libfunc.c"),
251                                 os.path.join(gen_dir, "librefl.c"),
252                             ],
253                             include_dirs=[gen_dir],
254                             )
255                   )
256
257# sas.sascalc.pr
258srcdir = os.path.join("src", "sas", "sascalc", "pr", "c_extensions")
259package_dir["sas.sascalc.pr.core"] = srcdir
260package_dir["sas.sascalc.pr"] = os.path.join("src", "sas", "sascalc", "pr")
261packages.extend(["sas.sascalc.pr", "sas.sascalc.pr.core"])
262ext_modules.append(Extension("sas.sascalc.pr.core.pr_inversion",
263                             sources=[os.path.join(srcdir, "Cinvertor.c"),
264                                      os.path.join(srcdir, "invertor.c"),
265                                      ],
266                             include_dirs=[],
267                             ))
268
269
270# sas.sascalc.file_converter
271mydir = os.path.join("src", "sas", "sascalc", "file_converter", "c_ext")
272package_dir["sas.sascalc.file_converter.core"] = mydir
273package_dir["sas.sascalc.file_converter"] = os.path.join(
274    "src", "sas", "sascalc", "file_converter")
275packages.extend(["sas.sascalc.file_converter",
276                 "sas.sascalc.file_converter.core"])
277
278ext_modules.append(Extension("sas.sascalc.file_converter.core.bsl_loader",
279                             sources=[os.path.join(mydir, "bsl_loader.c")],
280                             include_dirs=[np.get_include()],
281                             ))
282# sas.sascalc.corfunc
283package_dir["sas.sascalc.corfunc"] = os.path.join(
284    "src", "sas", "sascalc", "corfunc")
285packages.extend(["sas.sascalc.corfunc"])
286
287# sas.sascalc.fit
288package_dir["sas.sascalc.fit"] = os.path.join("src", "sas", "sascalc", "fit")
289packages.append("sas.sascalc.fit")
290
291# Perspectives
292# package_dir["sas.sasgui.perspectives"] = os.path.join(
293#     "src", "sas", "sasgui", "perspectives")
294# package_dir["sas.sasgui.perspectives.pr"] = os.path.join(
295#     "src", "sas", "sasgui", "perspectives", "pr")
296# packages.extend(["sas.sasgui.perspectives", "sas.sasgui.perspectives.pr"])
297# package_data["sas.sasgui.perspectives.pr"] = ['media/*']
298
299# package_dir["sas.sasgui.perspectives.invariant"] = os.path.join(
300#     "src", "sas", "sasgui", "perspectives", "invariant")
301# packages.extend(["sas.sasgui.perspectives.invariant"])
302# package_data['sas.sasgui.perspectives.invariant'] = [
303#     os.path.join("media", '*')]
304
305# package_dir["sas.sasgui.perspectives.fitting"] = os.path.join(
306#     "src", "sas", "sasgui", "perspectives", "fitting")
307# package_dir["sas.sasgui.perspectives.fitting.plugin_models"] = os.path.join(
308#     "src", "sas", "sasgui", "perspectives", "fitting", "plugin_models")
309# packages.extend(["sas.sasgui.perspectives.fitting",
310#                  "sas.sasgui.perspectives.fitting.plugin_models"])
311# package_data['sas.sasgui.perspectives.fitting'] = [
312#     'media/*', 'plugin_models/*']
313
314# packages.extend(["sas.sasgui.perspectives",
315#                  "sas.sasgui.perspectives.calculator"])
316# package_data['sas.sasgui.perspectives.calculator'] = ['images/*', 'media/*']
317
318# package_dir["sas.sasgui.perspectives.corfunc"] = os.path.join(
319#     "src", "sas", "sasgui", "perspectives", "corfunc")
320# packages.extend(["sas.sasgui.perspectives.corfunc"])
321# package_data['sas.sasgui.perspectives.corfunc'] = ['media/*']
322
323# package_dir["sas.sasgui.perspectives.file_converter"] = os.path.join(
324#     "src", "sas", "sasgui", "perspectives", "file_converter")
325# packages.extend(["sas.sasgui.perspectives.file_converter"])
326# package_data['sas.sasgui.perspectives.file_converter'] = ['media/*']
327
328# Data util
329package_dir["sas.sascalc.data_util"] = os.path.join(
330    "src", "sas", "sascalc", "data_util")
331packages.append("sas.sascalc.data_util")
332
333# # Plottools
334# package_dir["sas.sasgui.plottools"] = os.path.join(
335#     "src", "sas", "sasgui", "plottools")
336# packages.append("sas.sasgui.plottools")
337
338# QTGUI
339## UI
340package_dir["sas.qtgui.UI"] = os.path.join(
341    "src", "sas", "qtgui", "UI")
342packages.append("sas.qtgui.UI")
343
344## UnitTesting
345package_dir["sas.qtgui.UnitTesting"] = os.path.join(
346    "src", "sas", "qtgui", "UnitTesting")
347packages.append("sas.qtgui.UnitTesting")
348
349## Utilities
350package_dir["sas.qtgui.Utilities"] = os.path.join(
351    "src", "sas", "qtgui", "Utilities")
352packages.append("sas.qtgui.Utilities")
353package_dir["sas.qtgui.UtilitiesUI"] = os.path.join(
354    "src", "sas", "qtgui", "Utilities","UI")
355packages.append("sas.qtgui.Utilities.UI")
356
357package_dir["sas.qtgui.Calculators"] = os.path.join(
358    "src", "sas", "qtgui", "Calculators")
359package_dir["sas.qtgui.Calculators.UI"] = os.path.join(
360    "src", "sas", "qtgui", "Calculators", "UI")
361packages.extend(["sas.qtgui.Calculators", "sas.qtgui.Calculators.UI"])
362
363package_dir["sas.qtgui.MainWindow"] = os.path.join(
364    "src", "sas", "qtgui", "MainWindow")
365package_dir["sas.qtgui.MainWindow.UI"] = os.path.join(
366    "src", "sas", "qtgui", "MainWindow", "UI")
367packages.extend(["sas.qtgui.MainWindow", "sas.qtgui.MainWindow.UI"])
368
369## Perspectives
370package_dir["sas.qtgui.Perspectives"] = os.path.join(
371    "src", "sas", "qtgui", "Perspectives")
372packages.append("sas.qtgui.Perspectives")
373
374package_dir["sas.qtgui.Perspectives.Invariant"] = os.path.join(
375    "src", "sas", "qtgui", "Perspectives", "Invariant")
376package_dir["sas.qtgui.Perspectives.Invariant.UI"] = os.path.join(
377    "src", "sas", "qtgui", "Perspectives", "Invariant", "UI")
378packages.extend(["sas.qtgui.Perspectives.Invariant", "sas.qtgui.Perspectives.Invariant.UI"])
379
380package_dir["sas.qtgui.Perspectives.Fitting"] = os.path.join(
381    "src", "sas", "qtgui", "Perspectives", "Fitting")
382package_dir["sas.qtgui.Perspectives.Fitting.UI"] = os.path.join(
383    "src", "sas", "qtgui", "Perspectives", "Fitting", "UI")
384packages.extend(["sas.qtgui.Perspectives.Fitting", "sas.qtgui.Perspectives.Fitting.UI"])
385
386package_dir["sas.qtgui.Perspectives.Inversion"] = os.path.join(
387    "src", "sas", "qtgui", "Perspectives", "Inversion")
388package_dir["sas.qtgui.Perspectives.Inversion.UI"] = os.path.join(
389    "src", "sas", "qtgui", "Perspectives", "Inversion", "UI")
390packages.extend(["sas.qtgui.Perspectives.Inversion", "sas.qtgui.Perspectives.Inversion.UI"])
391
392package_dir["sas.qtgui.Perspectives.Corfunc"] = os.path.join(
393    "src", "sas", "qtgui", "Perspectives", "Corfunc")
394package_dir["sas.qtgui.Perspectives.Corfunc.UI"] = os.path.join(
395    "src", "sas", "qtgui", "Perspectives", "Corfunc", "UI")
396packages.extend(["sas.qtgui.Perspectives.Corfunc", "sas.qtgui.Perspectives.Corfunc.UI"])
397
398## Plotting
399package_dir["sas.qtgui.Plotting"] = os.path.join(
400    "src", "sas", "qtgui", "Plotting")
401package_dir["sas.qtgui.Plotting.UI"] = os.path.join(
402    "src", "sas", "qtgui", "Plotting", "UI")
403package_dir["sas.qtgui.Plotting.Slicers"] = os.path.join(
404    "src", "sas", "qtgui", "Plotting", "Slicers")
405packages.extend(["sas.qtgui.Plotting", "sas.qtgui.Plotting.UI", "sas.qtgui.Plotting.Slicers"])
406
407
408
409# # Last of the sas.models
410# package_dir["sas.models"] = os.path.join("src", "sas", "models")
411# packages.append("sas.models")
412
413EXTENSIONS = [".c", ".cpp"]
414
415
416def append_file(file_list, dir_path):
417    """
418    Add sources file to sources
419    """
420    for f in os.listdir(dir_path):
421        if os.path.isfile(os.path.join(dir_path, f)):
422            _, ext = os.path.splitext(f)
423            if ext.lower() in EXTENSIONS:
424                file_list.append(os.path.join(dir_path, f))
425        elif os.path.isdir(os.path.join(dir_path, f)) and \
426                not f.startswith("."):
427            sub_dir = os.path.join(dir_path, f)
428            for new_f in os.listdir(sub_dir):
429                if os.path.isfile(os.path.join(sub_dir, new_f)):
430                    _, ext = os.path.splitext(new_f)
431                    if ext.lower() in EXTENSIONS:
432                        file_list.append(os.path.join(sub_dir, new_f))
433
434
435# Comment out the following to avoid rebuilding all the models
436file_sources = []
437append_file(file_sources, gen_dir)
438
439# Wojtek's hacky way to add doc files while bundling egg
440# def add_doc_files(directory):
441#    paths = []
442#    for (path, directories, filenames) in os.walk(directory):
443#        for filename in filenames:
444#            paths.append(os.path.join(path, filename))
445#    return paths
446
447#doc_files = add_doc_files('doc')
448
449# SasView
450package_data['sas'] = ['logging.ini']
451package_data['sas.sasview'] = ['images/*',
452                               'media/*',
453                               'test/*.txt',
454                               'test/1d_data/*',
455                               'test/2d_data/*',
456                               'test/convertible_files/*',
457                               'test/coordinate_data/*',
458                               'test/image_data/*',
459                               'test/media/*',
460                               'test/other_files/*',
461                               'test/save_states/*',
462                               'test/sesans_data/*',
463                               'test/upcoming_formats/*',
464                               ]
465packages.append("sas.sasview")
466
467required = [
468    'bumps>=0.7.5.9', 'periodictable>=1.5.0',
469    'lxml', 'h5py',
470
471    # The following dependecies won't install automatically, so assume them
472    # The numbers should be bumped up for matplotlib and wxPython as well.
473    # 'numpy>=1.4.1', 'scipy>=0.7.2', 'matplotlib>=0.99.1.1',
474    # 'wxPython>=2.8.11', 'pil',
475]
476
477if os.name == 'nt':
478    required.extend(['html5lib', 'reportlab'])
479else:
480    # 'pil' is now called 'pillow'
481    required.extend(['pillow'])
482
483# Set up SasView
484setup(
485    name="sasview",
486    version=VERSION,
487    description="SasView application",
488    author="SasView Team",
489    author_email="developers@sasview.org",
490    url="http://sasview.org",
491    license="PSF",
492    keywords="small-angle x-ray and neutron scattering analysis",
493    download_url="https://github.com/SasView/sasview.git",
494    package_dir=package_dir,
495    packages=packages,
496    package_data=package_data,
497    ext_modules=ext_modules,
498    install_requires=required,
499    zip_safe=False,
500    entry_points={
501        'console_scripts': [
502            "sasview = sas.run",
503        ]
504    },
505    cmdclass={'build_ext': build_ext_subclass,
506              'docs': BuildSphinxCommand,
507              'disable_openmp': DisableOpenMPCommand}
508)
Note: See TracBrowser for help on using the repository browser.