[ae3ce4e] | 1 | """ |
---|
| 2 | Installation script for SANS models |
---|
| 3 | """ |
---|
[d7a2531] | 4 | |
---|
[f88624d] | 5 | import sys |
---|
| 6 | import os |
---|
[0b082f3] | 7 | import platform |
---|
[b72b595] | 8 | from numpy.distutils.misc_util import get_numpy_include_dirs |
---|
[6c13861] | 9 | numpy_incl_path = os.path.join(get_numpy_include_dirs()[0], "numpy") |
---|
[0abf7bf] | 10 | |
---|
[ae3ce4e] | 11 | # Then build and install the modules |
---|
[87615a48] | 12 | from distutils.core import Extension, setup |
---|
[13f00a0] | 13 | from distutils.command.build_ext import build_ext |
---|
| 14 | |
---|
| 15 | # Options to enable OpenMP |
---|
| 16 | copt = {'msvc': ['/openmp'], |
---|
| 17 | 'mingw32' : ['-fopenmp'], |
---|
| 18 | 'unix' : ['-fopenmp']} |
---|
| 19 | lopt = {'msvc': ['/MANIFEST'], |
---|
| 20 | 'mingw32' : ['-fopenmp'], |
---|
| 21 | 'unix' : ['-lgomp']} |
---|
| 22 | |
---|
| 23 | class build_ext_subclass( build_ext ): |
---|
| 24 | def build_extensions(self): |
---|
| 25 | # Get 64-bitness |
---|
[d9673d7a] | 26 | if sys.version_info >= (2, 6): |
---|
| 27 | is_64bits = sys.maxsize > 2**32 |
---|
| 28 | else: |
---|
| 29 | # 'sys.maxsize' and 64bit: Not supported for python2.5 |
---|
| 30 | is_64bits = False |
---|
[13f00a0] | 31 | c = self.compiler.compiler_type |
---|
| 32 | print "Compiling with %s (64bit=%s)" % (c, str(is_64bits)) |
---|
| 33 | |
---|
| 34 | if not (sys.platform=='darwin' and not is_64bits): |
---|
| 35 | if copt.has_key(c): |
---|
| 36 | for e in self.extensions: |
---|
| 37 | e.extra_compile_args = copt[ c ] |
---|
| 38 | if lopt.has_key(c): |
---|
| 39 | for e in self.extensions: |
---|
| 40 | e.extra_link_args = lopt[ c ] |
---|
| 41 | |
---|
| 42 | build_ext.build_extensions(self) |
---|
[ae3ce4e] | 43 | |
---|
| 44 | # Build the module name |
---|
[0a51f0d8] | 45 | srcdir = os.path.join("src", "sans", "models", "c_extensions") |
---|
| 46 | igordir = os.path.join("src","sans", "models", "libigor") |
---|
| 47 | c_model_dir = os.path.join("src", "sans", "models", "c_models") |
---|
| 48 | smear_dir = os.path.join("src", "sans", "models", "c_smearer") |
---|
[ae3ce4e] | 49 | print "Installing SANS models" |
---|
| 50 | |
---|
| 51 | |
---|
[0a51f0d8] | 52 | IGNORED_FILES = ["a.exe", |
---|
| 53 | "__init__.py" |
---|
| 54 | ".svn", |
---|
| 55 | "lineparser.py", |
---|
| 56 | "run.py", |
---|
| 57 | "CGaussian.cpp", |
---|
| 58 | "CLogNormal.cpp", |
---|
| 59 | "CLorentzian.cpp", |
---|
| 60 | "CSchulz.cpp", |
---|
| 61 | "WrapperGenerator.py", |
---|
[f9303b6] | 62 | "wrapping.py" |
---|
| 63 | ] |
---|
| 64 | if not os.name=='nt': |
---|
| 65 | IGNORED_FILES.extend(["gamma_win.c","winFuncs.c"]) |
---|
| 66 | |
---|
[0f282a5] | 67 | EXTENSIONS = [".c", ".cpp"] |
---|
[0a51f0d8] | 68 | |
---|
| 69 | def append_file(file_list, dir_path): |
---|
| 70 | """ |
---|
| 71 | Add sources file to sources |
---|
| 72 | """ |
---|
| 73 | for f in os.listdir(dir_path): |
---|
| 74 | if os.path.isfile(os.path.join(dir_path, f)): |
---|
| 75 | _, ext = os.path.splitext(f) |
---|
[0f282a5] | 76 | if ext.lower() in EXTENSIONS and f not in IGNORED_FILES: |
---|
[0a51f0d8] | 77 | file_list.append(os.path.join(dir_path, f)) |
---|
| 78 | elif os.path.isdir(os.path.join(dir_path, f)) and \ |
---|
| 79 | not f.startswith("."): |
---|
| 80 | sub_dir = os.path.join(dir_path, f) |
---|
| 81 | for new_f in os.listdir(sub_dir): |
---|
| 82 | if os.path.isfile(os.path.join(sub_dir, new_f)): |
---|
| 83 | _, ext = os.path.splitext(new_f) |
---|
[0f282a5] | 84 | if ext.lower() in EXTENSIONS and\ |
---|
[0a51f0d8] | 85 | new_f not in IGNORED_FILES: |
---|
| 86 | file_list.append(os.path.join(sub_dir, new_f)) |
---|
| 87 | |
---|
| 88 | model_sources = [] |
---|
| 89 | append_file(file_list=model_sources, dir_path=srcdir) |
---|
| 90 | append_file(file_list=model_sources, dir_path=igordir) |
---|
| 91 | append_file(file_list=model_sources, dir_path=c_model_dir) |
---|
| 92 | smear_sources = [] |
---|
| 93 | append_file(file_list=smear_sources, dir_path=smear_dir) |
---|
| 94 | |
---|
| 95 | |
---|
[f9303b6] | 96 | smearer_sources = [os.path.join(smear_dir, "smearer.cpp"), |
---|
| 97 | os.path.join(smear_dir, "smearer_module.cpp")] |
---|
| 98 | if os.name=='nt': |
---|
| 99 | smearer_sources.append(os.path.join(igordir, "winFuncs.c")) |
---|
| 100 | |
---|
[87615a48] | 101 | dist = setup( |
---|
[5953b77] | 102 | name="sansmodels", |
---|
[a2898df] | 103 | version = "1.0.0", |
---|
[ae3ce4e] | 104 | description = "Python module for SANS scattering models", |
---|
[87615a48] | 105 | author = "SANS/DANSE", |
---|
| 106 | author_email = "sansdanse@gmail.gov", |
---|
[ae3ce4e] | 107 | url = "http://danse.us/trac/sans", |
---|
| 108 | |
---|
| 109 | # Place this module under the sans package |
---|
| 110 | #ext_package = "sans", |
---|
| 111 | |
---|
| 112 | # Use the pure python modules |
---|
[0a51f0d8] | 113 | package_dir = {"sans":os.path.join("src", "sans"), |
---|
| 114 | "sans.models":os.path.join("src", "sans", "models"), |
---|
| 115 | "sans.models.sans_extension":srcdir, |
---|
[42c974f] | 116 | }, |
---|
| 117 | package_data={'sans.models': [os.path.join('media', "*")]}, |
---|
| 118 | packages = ["sans","sans.models", |
---|
[0abf7bf] | 119 | "sans.models.sans_extension",], |
---|
[ae3ce4e] | 120 | |
---|
[c089120] | 121 | ext_modules = [ Extension("sans.models.sans_extension.c_models", |
---|
[0b082f3] | 122 | sources=model_sources, |
---|
| 123 | include_dirs=[igordir, srcdir, c_model_dir, numpy_incl_path], |
---|
| 124 | ), |
---|
| 125 | |
---|
[87615a48] | 126 | # Smearer extension |
---|
[c089120] | 127 | Extension("sans.models.sans_extension.smearer", |
---|
[f9303b6] | 128 | sources = smearer_sources, |
---|
[13f00a0] | 129 | include_dirs=[igordir, smear_dir, numpy_incl_path], |
---|
| 130 | ), |
---|
| 131 | |
---|
[c089120] | 132 | Extension("sans.models.sans_extension.smearer2d_helper", |
---|
[0a51f0d8] | 133 | sources = [os.path.join(smear_dir, |
---|
| 134 | "smearer2d_helper_module.cpp"), |
---|
| 135 | os.path.join(smear_dir, "smearer2d_helper.cpp"),], |
---|
[0b082f3] | 136 | include_dirs=[smear_dir,numpy_incl_path], |
---|
[13f00a0] | 137 | ) |
---|
| 138 | ], |
---|
| 139 | cmdclass = {'build_ext': build_ext_subclass } |
---|
[87615a48] | 140 | ) |
---|
[b72b595] | 141 | |
---|