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