source: sasview/setup.py @ 334c50d

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 334c50d was 334c50d, checked in by Anders Markvardsen <anders.markvardsen@…>, 11 years ago

A few more steps towards getting corfunc perspective to show up.

Currently the error message is:

'module' object has no attribute 'Plugin'

  • Property mode set to 100644
File size: 15.0 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 platform
8import shutil
9from setuptools import setup, Extension, find_packages
10from distutils.command.build_ext import build_ext
11
12try:
13    from numpy.distutils.misc_util import get_numpy_include_dirs
14    NUMPY_INC = get_numpy_include_dirs()[0]
15except:
16    try:
17        import numpy
18        NUMPY_INC = os.path.join(os.path.split(numpy.__file__)[0], 
19                                 "core","include")
20    except:
21        msg = "\nNumpy is needed to build SasView. "
22        print msg, "Try easy_install numpy.\n  %s" % str(sys.exc_value)
23        sys.exit(0)
24
25# Manage version number ######################################
26import sansview
27VERSION = sansview.__version__
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 .sansview
37# except when there is no such file
38# Todo : make this list generic
39plugin_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']
45sans_dir = os.path.join(os.path.expanduser("~"),'.sasview')
46if os.path.isdir(sans_dir):
47    f_path = os.path.join(sans_dir, "sasview.log")
48    if os.path.isfile(f_path):
49        os.remove(f_path)
50    f_path = os.path.join(sans_dir, "serialized_cat.p")
51    if os.path.isfile(f_path):
52        os.remove(f_path)
53    f_path = os.path.join(sans_dir, 'config', "custom_config.py")
54    if os.path.isfile(f_path):
55        os.remove(f_path)
56    f_path = os.path.join(sans_dir, 'plugin_models')
57    if os.path.isdir(f_path):
58        for file in os.listdir(f_path): 
59            if file in plugin_model_list:
60                file_path =  os.path.join(f_path, file)
61                os.remove(file_path)
62                   
63# 'sys.maxsize' and 64bit: Not supported for python2.5
64is_64bits = False
65if sys.version_info >= (2, 6):
66    is_64bits = sys.maxsize > 2**32
67   
68   
69enable_openmp = True                   
70
71if sys.platform =='darwin' and not is_64bits:
72    # Disable OpenMP
73    enable_openmp = False
74
75# Options to enable OpenMP
76copt =  {'msvc': ['/openmp'],
77         'mingw32' : ['-fopenmp'],
78         'unix' : ['-fopenmp']}
79lopt =  {'msvc': ['/MANIFEST'],
80         'mingw32' : ['-fopenmp'],
81         'unix' : ['-lgomp']}
82
83# Platform-specific link options
84platform_lopt = {'msvc' : ['/MANIFEST']}
85
86class build_ext_subclass( build_ext ):
87    def build_extensions(self):
88        # Get 64-bitness
89        c = self.compiler.compiler_type
90        print "Compiling with %s (64bit=%s)" % (c, str(is_64bits))
91       
92        # OpenMP build options
93        if enable_openmp:
94            if copt.has_key(c):
95               for e in self.extensions:
96                   e.extra_compile_args = copt[ c ]
97            if lopt.has_key(c):
98                for e in self.extensions:
99                    e.extra_link_args = lopt[ c ]
100                   
101        # Platform-specific build options
102        if platform_lopt.has_key(c):
103            for e in self.extensions:
104                e.extra_link_args = platform_lopt[ c ]
105
106        build_ext.build_extensions(self)
107
108
109# sans.invariant
110package_dir["sans.invariant"] = "sansinvariant/src/sans/invariant"
111packages.extend(["sans.invariant"])
112
113# sans.guiframe
114guiframe_path = os.path.join("sansguiframe", "src", "sans", "guiframe")
115package_dir["sans.guiframe"] = guiframe_path
116package_dir["sans.guiframe.local_perspectives"] = os.path.join(guiframe_path, 
117                                                        "local_perspectives")
118package_data["sans.guiframe"] = ['images/*', 'media/*']
119packages.extend(["sans.guiframe", "sans.guiframe.local_perspectives"])
120# build local plugin
121for dir in os.listdir(os.path.join(guiframe_path, "local_perspectives")):
122    if dir not in ['.svn','__init__.py', '__init__.pyc']:
123        package_name = "sans.guiframe.local_perspectives." + dir
124        packages.append(package_name)
125        package_dir[package_name] = os.path.join(guiframe_path, 
126                                                 "local_perspectives", dir)
127
128# sans.dataloader
129package_dir["sans.dataloader"] = os.path.join("sansdataloader", 
130                                              "src", "sans", "dataloader")
131package_data["sans.dataloader.readers"] = ['defaults.xml']
132packages.extend(["sans.dataloader","sans.dataloader.readers"])
133
134# sans.calculator
135package_dir["sans.calculator"] = "sanscalculator/src/sans/calculator"
136packages.extend(["sans.calculator"])
137
138# sans.corfunc
139package_dir["sans.corfunc"] = "corfunc/src/sans/corfunc"
140packages.extend(["sans.corfunc"])
141   
142# sans.pr
143numpy_incl_path = os.path.join(NUMPY_INC, "numpy")
144srcdir  = os.path.join("pr_inversion", "src", "sans", "pr", "c_extensions")
145
146
147   
148package_dir["sans.pr.core"] = srcdir
149package_dir["sans.pr"] = os.path.join("pr_inversion", "src","sans", "pr")
150packages.extend(["sans.pr","sans.pr.core"])
151ext_modules.append( Extension("sans.pr.core.pr_inversion",
152                              sources = [ os.path.join(srcdir, "Cinvertor.c"),
153                                         os.path.join(srcdir, "invertor.c"),
154                                         ],
155                              include_dirs=[numpy_incl_path],
156                              ) )
157       
158# sans.fit (park integration)
159package_dir["sans.fit"] = "park_integration/src/sans/fit"
160packages.append("sans.fit")
161
162# inversion view
163package_dir["sans.perspectives"] = "inversionview/src/sans/perspectives"
164package_dir["sans.perspectives.pr"] = "inversionview/src/sans/perspectives/pr"
165packages.extend(["sans.perspectives","sans.perspectives.pr"])
166package_data["sans.perspectives.pr"] = ['images/*']
167
168# Invariant view
169package_dir["sans.perspectives"] = os.path.join("invariantview", "src", 
170                                                "sans", "perspectives")
171package_dir["sans.perspectives.invariant"] = os.path.join("invariantview", 
172                                    "src", "sans", "perspectives", "invariant")
173               
174package_data['sans.perspectives.invariant'] = [os.path.join("media",'*')]
175packages.extend(["sans.perspectives","sans.perspectives.invariant"]) 
176
177# Fitting view
178fitting_path = os.path.join("fittingview", "src", "sans", 
179                            "perspectives", "fitting")
180package_dir["sans.perspectives"] = os.path.join("fittingview", 
181                                            "src", "sans", "perspectives"),
182package_dir["sans.perspectives.fitting"] = fitting_path
183package_dir["sans.perspectives.fitting.plugin_models"] = \
184                                os.path.join(fitting_path, "plugin_models")
185package_data['sans.perspectives.fitting'] = ['media/*','plugin_models/*']
186packages.extend(["sans.perspectives", "sans.perspectives.fitting", 
187                 "sans.perspectives.fitting.plugin_models"])
188
189# Calculator view
190package_dir["sans.perspectives"] = "calculatorview/src/sans/perspectives"
191package_dir["sans.perspectives.calculator"] = os.path.join("calculatorview", 
192                                "src", "sans", "perspectives", "calculator")
193package_data['sans.perspectives.calculator'] = ['images/*', 'media/*']
194packages.extend(["sans.perspectives", "sans.perspectives.calculator"])
195     
196# Calculator view
197package_dir["sans.perspectives"] = "corfuncview/src/sans/perspectives"
198package_dir["sans.perspectives.corfunc"] = os.path.join("corfuncview", 
199                                "src", "sans", "perspectives", "corfunc")
200package_data['sans.perspectives.corfunc'] = ['images/*', 'media/*']
201packages.extend(["sans.perspectives", "sans.perspectives.corfunc"])     
202     
203# Data util
204package_dir["data_util"] = "sansutil"
205packages.extend(["data_util"])
206
207# Plottools
208package_dir["danse"] = os.path.join("plottools", "src", "danse")
209package_dir["danse.common"] = os.path.join("plottools", "src", 
210                                           "danse", "common")
211package_dir["danse.common.plottools"] = os.path.join("plottools", 
212                                    "src", "danse", "common", "plottools")
213packages.extend(["danse", "danse.common", "danse.common.plottools"])
214
215# Park 1.2.1
216package_dir["park"]="park-1.2.1/park"
217packages.extend(["park"])
218package_data["park"] = ['park-1.2.1/*.txt', 'park-1.2.1/park.epydoc']
219ext_modules.append( Extension("park._modeling",
220                              sources = [ os.path.join("park-1.2.1", 
221                                                "park", "lib", "modeling.cc"),
222                                         os.path.join("park-1.2.1", 
223                                                "park", "lib", "resolution.c"),
224                                         ],
225                              ) )
226
227# Sans models
228includedir  = os.path.join("sansmodels", "include")
229igordir = os.path.join("sansmodels", "src", "libigor")
230c_model_dir = os.path.join("sansmodels", "src", "c_models")
231smear_dir  = os.path.join("sansmodels", "src", "c_smearer")
232gen_dir  = os.path.join("sansmodels", "src", "c_gen")
233wrapper_dir  = os.path.join("sansmodels", "src", "python_wrapper", "generated")
234model_dir = os.path.join("sansmodels", "src", "sans","models")
235
236if os.path.isdir(wrapper_dir):
237    for file in os.listdir(wrapper_dir): 
238        file_path =  os.path.join(wrapper_dir, file)
239        os.remove(file_path)
240else:
241    os.makedirs(wrapper_dir)
242sys.path.append(os.path.join("sansmodels", "src", "python_wrapper"))
243from wrapping import generate_wrappers
244generate_wrappers(header_dir = includedir, 
245                  output_dir = model_dir,
246                  c_wrapper_dir = wrapper_dir)
247
248IGNORED_FILES = [".svn"]
249if not os.name=='nt':
250    IGNORED_FILES.extend(["gamma_win.c","winFuncs.c"])
251
252
253EXTENSIONS = [".c", ".cpp"]
254
255def append_file(file_list, dir_path):
256    """
257    Add sources file to sources
258    """
259    for f in os.listdir(dir_path):
260        if os.path.isfile(os.path.join(dir_path, f)):
261            _, ext = os.path.splitext(f)
262            if ext.lower() in EXTENSIONS and f not in IGNORED_FILES:
263                file_list.append(os.path.join(dir_path, f)) 
264        elif os.path.isdir(os.path.join(dir_path, f)) and \
265                not f.startswith("."):
266            sub_dir = os.path.join(dir_path, f)
267            for new_f in os.listdir(sub_dir):
268                if os.path.isfile(os.path.join(sub_dir, new_f)):
269                    _, ext = os.path.splitext(new_f)
270                    if ext.lower() in EXTENSIONS and\
271                         new_f not in IGNORED_FILES:
272                        file_list.append(os.path.join(sub_dir, new_f)) 
273       
274model_sources = []
275append_file(file_list=model_sources, dir_path=igordir)
276append_file(file_list=model_sources, dir_path=c_model_dir)
277append_file(file_list=model_sources, dir_path=wrapper_dir)
278
279smear_sources = []
280append_file(file_list=smear_sources, dir_path=smear_dir)
281
282
283package_dir["sans"] = os.path.join("sansmodels", "src", "sans")
284package_dir["sans.models"] = model_dir
285
286package_dir["sans.models.sans_extension"] = os.path.join("sansmodels", "src", 
287                                            "sans", "models", "sans_extension")
288           
289package_data['sans.models'] = [os.path.join('media', "*.*")]
290package_data['sans.models'] += [os.path.join('media','img', "*.*")]
291
292packages.extend(["sans","sans.models","sans.models.sans_extension"])
293   
294smearer_sources = [os.path.join(smear_dir, "smearer.cpp"),
295                  os.path.join(smear_dir, "smearer_module.cpp")]
296geni_sources = [os.path.join(gen_dir, "sld2i_module.cpp")]
297if os.name=='nt':
298    smearer_sources.append(os.path.join(igordir, "winFuncs.c"))
299    geni_sources.append(os.path.join(igordir, "winFuncs.c"))
300ext_modules.extend( [ Extension("sans.models.sans_extension.c_models",
301                                sources=model_sources,                 
302                                include_dirs=[igordir, includedir, 
303                                              c_model_dir, numpy_incl_path],
304                                ),       
305                    # Smearer extension
306                    Extension("sans.models.sans_extension.smearer",
307                              sources = smearer_sources,
308                              include_dirs=[igordir, 
309                                            smear_dir, numpy_incl_path],
310                              ),
311                   
312                    Extension("sans.models.sans_extension.smearer2d_helper",
313                              sources = [os.path.join(smear_dir, 
314                                                "smearer2d_helper_module.cpp"),
315                                         os.path.join(smear_dir, 
316                                                "smearer2d_helper.cpp"),],
317                              include_dirs=[smear_dir, numpy_incl_path],
318                              ),
319                   
320                    Extension("sans.models.sans_extension.sld2i",
321                              sources = [os.path.join(gen_dir, 
322                                                "sld2i_module.cpp"),
323                                         os.path.join(gen_dir, 
324                                                "sld2i.cpp"),
325                                         os.path.join(c_model_dir, 
326                                                "libfunc.c"),
327                                         os.path.join(c_model_dir, 
328                                                "librefl.c"),],
329                              include_dirs=[gen_dir, includedir, 
330                                            c_model_dir, numpy_incl_path],
331                              )
332                    ] )
333       
334# SasView
335
336package_dir["sans.sansview"] = "sansview"
337package_data['sans.sansview'] = ['images/*', 'media/*', 'test/*', 
338                                 'default_categories.p']
339packages.append("sans.sansview")
340
341#required = ['lxml>=2.2.2', 'numpy>=1.4.1', 'matplotlib>=0.99.1.1',
342#            'wxPython>=2.8.11', 'pil',
343#            'periodictable>=1.3.0', 'scipy>=0.7.2']
344required = ['lxml','periodictable>=1.3.1','pyparsing<2.0.0']
345
346if os.name=='nt':
347    required.extend(['html5lib', 'reportlab'])
348else:
349    required.extend(['pil'])
350   
351 # Set up SasView   
352setup(
353    name="sasview",
354    version = VERSION,
355    description = "SasView application",
356    author = "University of Tennessee",
357    author_email = "sansdanse@gmail.com",
358    url = "http://danse.chem.utk.edu",
359    license = "PSF",
360    keywords = "small-angle x-ray and neutron scattering analysis",
361    download_url = "https://sourceforge.net/projects/sansviewproject/files/",
362    package_dir = package_dir,
363    packages = packages,
364    package_data = package_data,
365    ext_modules = ext_modules,
366    install_requires = required,
367    zip_safe = False,
368    entry_points = {
369                    'console_scripts':[
370                                       "sasview = sans.sansview.sansview:run",
371                                       ]
372                    },
373    cmdclass = {'build_ext': build_ext_subclass }
374    )   
Note: See TracBrowser for help on using the repository browser.