""" Setup for SasView #TODO: Add checks to see that all the dependencies are on the system """ import sys import os import shutil from setuptools import setup, Extension from distutils.command.build_ext import build_ext from distutils.core import Command import numpy as np # Manage version number ###################################### import sasview VERSION = sasview.__version__ ############################################################## package_dir = {} package_data = {} packages = [] ext_modules = [] # Remove all files that should be updated by this setup # We do this here because application updates these files from .sasview # except when there is no such file # Todo : make this list generic #plugin_model_list = ['polynominal5.py', 'sph_bessel_jn.py', # 'sum_Ap1_1_Ap2.py', 'sum_p1_p2.py', # 'testmodel_2.py', 'testmodel.py', # 'polynominal5.pyc', 'sph_bessel_jn.pyc', # 'sum_Ap1_1_Ap2.pyc', 'sum_p1_p2.pyc', # 'testmodel_2.pyc', 'testmodel.pyc', 'plugins.log'] CURRENT_SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) SASVIEW_BUILD = os.path.join(CURRENT_SCRIPT_DIR, "build") sas_dir = os.path.join(os.path.expanduser("~"),'.sasview') if os.path.isdir(sas_dir): f_path = os.path.join(sas_dir, "sasview.log") if os.path.isfile(f_path): os.remove(f_path) f_path = os.path.join(sas_dir, "categories.json") if os.path.isfile(f_path): os.remove(f_path) f_path = os.path.join(sas_dir, 'config', "custom_config.py") if os.path.isfile(f_path): os.remove(f_path) #f_path = os.path.join(sas_dir, 'plugin_models') #if os.path.isdir(f_path): # for f in os.listdir(f_path): # if f in plugin_model_list: # file_path = os.path.join(f_path, f) # os.remove(file_path) if os.path.exists(SASVIEW_BUILD): print("Removing existing build directory", SASVIEW_BUILD, "for a clean build") shutil.rmtree(SASVIEW_BUILD) # 'sys.maxsize' and 64bit: Not supported for python2.5 is_64bits = False if sys.version_info >= (2, 6): is_64bits = sys.maxsize > 2**32 enable_openmp = False if sys.platform =='darwin': if not is_64bits: # Disable OpenMP enable_openmp = False else: # Newer versions of Darwin don't support openmp try: darwin_ver = int(os.uname()[2].split('.')[0]) if darwin_ver >= 12: enable_openmp = False except: print("PROBLEM determining Darwin version") # Options to enable OpenMP copt = {'msvc': ['/openmp'], 'mingw32' : ['-fopenmp'], 'unix' : ['-fopenmp']} lopt = {'msvc': ['/MANIFEST'], 'mingw32' : ['-fopenmp'], 'unix' : ['-lgomp']} # Platform-specific link options platform_lopt = {'msvc' : ['/MANIFEST']} platform_copt = {} # Set copts to get compile working on OS X >= 10.9 using clang if sys.platform =='darwin': try: darwin_ver = int(os.uname()[2].split('.')[0]) if darwin_ver >= 13 and darwin_ver < 14: platform_copt = {'unix' : ['-Wno-error=unused-command-line-argument-hard-error-in-future']} except: print("PROBLEM determining Darwin version") class DisableOpenMPCommand(Command): description = "The version of MinGW that comes with Anaconda does not come with OpenMP :( "\ "This commands means we can turn off compiling with OpenMP for this or any "\ "other reason." user_options = [] def initialize_options(self): self.cwd = None def finalize_options(self): self.cwd = os.getcwd() global enable_openmp enable_openmp = False def run(self): pass class build_ext_subclass( build_ext ): def build_extensions(self): # Get 64-bitness c = self.compiler.compiler_type print("Compiling with %s (64bit=%s)" % (c, str(is_64bits))) # OpenMP build options if enable_openmp: if c in copt: for e in self.extensions: e.extra_compile_args = copt[ c ] if c in lopt: for e in self.extensions: e.extra_link_args = lopt[ c ] # Platform-specific build options if c in platform_lopt: for e in self.extensions: e.extra_link_args = platform_lopt[ c ] if c in platform_copt: for e in self.extensions: e.extra_compile_args = platform_copt[ c ] build_ext.build_extensions(self) class BuildSphinxCommand(Command): description = "Build Sphinx documentation." user_options = [] def initialize_options(self): self.cwd = None def finalize_options(self): self.cwd = os.getcwd() def run(self): ''' First builds the sasmodels documentation if the directory is present. Then builds the sasview docs. ''' ### AJJ - Add code for building sasmodels docs here: # check for doc path SASMODELS_PATH = '../sasmodels' if os.path.exists(SASMODELS_PATH): if os.path.isdir(SASMODELS_PATH): # if available, build sasmodels docs else: # if not available warning message print "WARNING!! sasmodels directory not found. Cannot build model docs." #Now build sasview (+sasmodels) docs sys.path.append("docs/sphinx-docs") import build_sphinx build_sphinx.rebuild() # sas module package_dir["sas"] = os.path.join("src", "sas") packages.append("sas") # sas module package_dir["sas.sasgui"] = os.path.join("src", "sas", "sasgui") packages.append("sas.sasgui") # sas module package_dir["sas.sascalc"] = os.path.join("src", "sas", "sascalc") packages.append("sas.sascalc") # sas.sascalc.invariant package_dir["sas.sascalc.invariant"] = os.path.join("src", "sas", "sascalc", "invariant") packages.extend(["sas.sascalc.invariant"]) # sas.sasgui.guiframe guiframe_path = os.path.join("src", "sas", "sasgui", "guiframe") package_dir["sas.sasgui.guiframe"] = guiframe_path package_dir["sas.sasgui.guiframe.local_perspectives"] = os.path.join(os.path.join(guiframe_path, "local_perspectives")) package_data["sas.sasgui.guiframe"] = ['images/*', 'media/*'] packages.extend(["sas.sasgui.guiframe", "sas.sasgui.guiframe.local_perspectives"]) # build local plugin for d in os.listdir(os.path.join(guiframe_path, "local_perspectives")): if d not in ['.svn','__init__.py', '__init__.pyc']: package_name = "sas.sasgui.guiframe.local_perspectives." + d packages.append(package_name) package_dir[package_name] = os.path.join(guiframe_path, "local_perspectives", d) # sas.sascalc.dataloader package_dir["sas.sascalc.dataloader"] = os.path.join("src", "sas", "sascalc", "dataloader") package_data["sas.sascalc.dataloader.readers"] = ['defaults.json','schema/*.xsd'] packages.extend(["sas.sascalc.dataloader","sas.sascalc.dataloader.readers","sas.sascalc.dataloader.readers.schema"]) # sas.sascalc.calculator gen_dir = os.path.join("src", "sas", "sascalc", "calculator", "c_extensions") package_dir["sas.sascalc.calculator.core"] = gen_dir package_dir["sas.sascalc.calculator"] = os.path.join("src", "sas", "sascalc", "calculator") packages.extend(["sas.sascalc.calculator","sas.sascalc.calculator.core"]) ext_modules.append( Extension("sas.sascalc.calculator.core.sld2i", sources = [ os.path.join(gen_dir, "sld2i_module.cpp"), os.path.join(gen_dir, "sld2i.cpp"), os.path.join(gen_dir, "libfunc.c"), os.path.join(gen_dir, "librefl.c"), ], include_dirs=[gen_dir], ) ) # sas.sascalc.pr srcdir = os.path.join("src", "sas", "sascalc", "pr", "c_extensions") package_dir["sas.sascalc.pr.core"] = srcdir package_dir["sas.sascalc.pr"] = os.path.join("src","sas", "sascalc", "pr") packages.extend(["sas.sascalc.pr","sas.sascalc.pr.core"]) ext_modules.append( Extension("sas.sascalc.pr.core.pr_inversion", sources = [os.path.join(srcdir, "Cinvertor.c"), os.path.join(srcdir, "invertor.c"), ], include_dirs=[], ) ) # sas.sascalc.file_converter mydir = os.path.join("src", "sas", "sascalc", "file_converter", "c_ext") package_dir["sas.sascalc.file_converter.core"] = mydir package_dir["sas.sascalc.file_converter"] = os.path.join("src","sas", "sascalc", "file_converter") packages.extend(["sas.sascalc.file_converter","sas.sascalc.file_converter.core"]) ext_modules.append( Extension("sas.sascalc.file_converter.core.bsl_loader", sources = [os.path.join(mydir, "bsl_loader.c")], include_dirs=[np.get_include()], ) ) #sas.sascalc.corfunc package_dir["sas.sascalc.corfunc"] = os.path.join("src", "sas", "sascalc", "corfunc") packages.extend(["sas.sascalc.corfunc"]) # sas.sascalc.fit package_dir["sas.sascalc.fit"] = os.path.join("src", "sas", "sascalc", "fit") packages.append("sas.sascalc.fit") # Perspectives package_dir["sas.sasgui.perspectives"] = os.path.join("src", "sas", "sasgui", "perspectives") package_dir["sas.sasgui.perspectives.pr"] = os.path.join("src", "sas", "sasgui", "perspectives", "pr") packages.extend(["sas.sasgui.perspectives","sas.sasgui.perspectives.pr"]) package_data["sas.sasgui.perspectives.pr"] = ['media/*'] package_dir["sas.sasgui.perspectives.invariant"] = os.path.join("src", "sas", "sasgui", "perspectives", "invariant") packages.extend(["sas.sasgui.perspectives.invariant"]) package_data['sas.sasgui.perspectives.invariant'] = [os.path.join("media",'*')] package_dir["sas.sasgui.perspectives.fitting"] = os.path.join("src", "sas", "sasgui", "perspectives", "fitting") package_dir["sas.sasgui.perspectives.fitting.plugin_models"] = os.path.join("src", "sas", "sasgui", "perspectives", "fitting", "plugin_models") packages.extend(["sas.sasgui.perspectives.fitting", "sas.sasgui.perspectives.fitting.plugin_models"]) package_data['sas.sasgui.perspectives.fitting'] = ['media/*', 'plugin_models/*'] packages.extend(["sas.sasgui.perspectives", "sas.sasgui.perspectives.calculator"]) package_data['sas.sasgui.perspectives.calculator'] = ['images/*', 'media/*'] package_dir["sas.sasgui.perspectives.corfunc"] = os.path.join("src", "sas", "sasgui", "perspectives", "corfunc") packages.extend(["sas.sasgui.perspectives.corfunc"]) package_data['sas.sasgui.perspectives.corfunc'] = ['media/*'] package_dir["sas.sasgui.perspectives.file_converter"] = os.path.join("src", "sas", "sasgui", "perspectives", "file_converter") packages.extend(["sas.sasgui.perspectives.file_converter"]) package_data['sas.sasgui.perspectives.file_converter'] = ['media/*'] # Data util package_dir["sas.sascalc.data_util"] = os.path.join("src", "sas", "sascalc", "data_util") packages.append("sas.sascalc.data_util") # Plottools package_dir["sas.sasgui.plottools"] = os.path.join("src", "sas", "sasgui", "plottools") packages.append("sas.sasgui.plottools") # # Last of the sas.models # package_dir["sas.models"] = os.path.join("src", "sas", "models") # packages.append("sas.models") EXTENSIONS = [".c", ".cpp"] def append_file(file_list, dir_path): """ Add sources file to sources """ for f in os.listdir(dir_path): if os.path.isfile(os.path.join(dir_path, f)): _, ext = os.path.splitext(f) if ext.lower() in EXTENSIONS: file_list.append(os.path.join(dir_path, f)) elif os.path.isdir(os.path.join(dir_path, f)) and \ not f.startswith("."): sub_dir = os.path.join(dir_path, f) for new_f in os.listdir(sub_dir): if os.path.isfile(os.path.join(sub_dir, new_f)): _, ext = os.path.splitext(new_f) if ext.lower() in EXTENSIONS: file_list.append(os.path.join(sub_dir, new_f)) # Comment out the following to avoid rebuilding all the models file_sources = [] append_file(file_sources, gen_dir) #Wojtek's hacky way to add doc files while bundling egg #def add_doc_files(directory): # paths = [] # for (path, directories, filenames) in os.walk(directory): # for filename in filenames: # paths.append(os.path.join(path, filename)) # return paths #doc_files = add_doc_files('doc') # SasView package_dir["sas.sasview"] = "sasview" package_data['sas.sasview'] = ['images/*', 'media/*', 'test/*.txt', 'test/1d_data/*', 'test/2d_data/*', 'test/convertible_files/*', 'test/coordinate_data/*', 'test/image_data/*', 'test/media/*', 'test/other_files/*', 'test/save_states/*', 'test/sesans_data/*' ] packages.append("sas.sasview") required = [ 'bumps>=0.7.5.9', 'periodictable>=1.3.1', 'pyparsing<2.0.0', # 'lxml>=2.2.2', 'lxml', 'h5py', ## The following dependecies won't install automatically, so assume them ## The numbers should be bumped up for matplotlib and wxPython as well. # 'numpy>=1.4.1', 'scipy>=0.7.2', 'matplotlib>=0.99.1.1', # 'wxPython>=2.8.11', 'pil', ] if os.name=='nt': required.extend(['html5lib', 'reportlab']) else: # 'pil' is now called 'pillow' required.extend(['pillow']) # Set up SasView setup( name="sasview", version = VERSION, description = "SasView application", author = "SasView Team", author_email = "developers@sasview.org", url = "http://sasview.org", license = "PSF", keywords = "small-angle x-ray and neutron scattering analysis", download_url = "https://github.com/SasView/sasview.git", package_dir = package_dir, packages = packages, package_data = package_data, ext_modules = ext_modules, install_requires = required, zip_safe = False, entry_points = { 'console_scripts':[ "sasview = sas.sasview.sasview:run", ] }, cmdclass = {'build_ext': build_ext_subclass, 'docs': BuildSphinxCommand, 'disable_openmp': DisableOpenMPCommand} )