[f36e01f] | 1 | # -*- coding: utf-8 -*- |
---|
| 2 | #!/usr/bin/env python |
---|
| 3 | |
---|
[d6bc28cf] | 4 | """ |
---|
[c329f4d] | 5 | Setup for SasView |
---|
[f36e01f] | 6 | TODO: Add checks to see that all the dependencies are on the system |
---|
[d6bc28cf] | 7 | """ |
---|
[d66dbcc] | 8 | from __future__ import print_function |
---|
[f36e01f] | 9 | |
---|
[d6bc28cf] | 10 | import os |
---|
[6c7e4cc1] | 11 | import subprocess |
---|
[c8843be] | 12 | import shutil |
---|
[f36e01f] | 13 | import sys |
---|
[2cef9d3] | 14 | from distutils.command.build_ext import build_ext |
---|
[968aa6e] | 15 | from distutils.core import Command |
---|
[d6bc28cf] | 16 | |
---|
[9a5097c] | 17 | import numpy as np |
---|
[f36e01f] | 18 | from setuptools import Extension, setup |
---|
[d6bc28cf] | 19 | |
---|
[5548954] | 20 | # Manage version number ###################################### |
---|
[efe730d] | 21 | with 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") |
---|
[5548954] | 28 | ############################################################## |
---|
| 29 | |
---|
[d6bc28cf] | 30 | package_dir = {} |
---|
| 31 | package_data = {} |
---|
| 32 | packages = [] |
---|
| 33 | ext_modules = [] |
---|
| 34 | |
---|
[8ab3302] | 35 | # Remove all files that should be updated by this setup |
---|
[3a39c2e] | 36 | # We do this here because application updates these files from .sasview |
---|
[8ab3302] | 37 | # except when there is no such file |
---|
| 38 | # Todo : make this list generic |
---|
[f36e01f] | 39 | # plugin_model_list = ['polynominal5.py', 'sph_bessel_jn.py', |
---|
[a62945e] | 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'] |
---|
[c8843be] | 45 | |
---|
| 46 | CURRENT_SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) |
---|
| 47 | SASVIEW_BUILD = os.path.join(CURRENT_SCRIPT_DIR, "build") |
---|
| 48 | |
---|
[914ba0a] | 49 | # TODO: build step should not be messing with existing installation!! |
---|
[f36e01f] | 50 | sas_dir = os.path.join(os.path.expanduser("~"), '.sasview') |
---|
[3a39c2e] | 51 | if os.path.isdir(sas_dir): |
---|
| 52 | f_path = os.path.join(sas_dir, "sasview.log") |
---|
[e615a0d] | 53 | if os.path.isfile(f_path): |
---|
| 54 | os.remove(f_path) |
---|
[50008e3] | 55 | f_path = os.path.join(sas_dir, "categories.json") |
---|
[ea5fa58] | 56 | if os.path.isfile(f_path): |
---|
| 57 | os.remove(f_path) |
---|
[3a39c2e] | 58 | f_path = os.path.join(sas_dir, 'config', "custom_config.py") |
---|
[e615a0d] | 59 | if os.path.isfile(f_path): |
---|
| 60 | os.remove(f_path) |
---|
[5881b17] | 61 | #f_path = os.path.join(sas_dir, 'plugin_models') |
---|
[f36e01f] | 62 | # if os.path.isdir(f_path): |
---|
[a62945e] | 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) |
---|
[899e084] | 67 | |
---|
[f542866] | 68 | |
---|
| 69 | # Optionally clean before build. |
---|
| 70 | dont_clean = 'update' in sys.argv |
---|
| 71 | if dont_clean: |
---|
| 72 | sys.argv.remove('update') |
---|
| 73 | elif os.path.exists(SASVIEW_BUILD): |
---|
[d66dbcc] | 74 | print("Removing existing build directory", SASVIEW_BUILD, "for a clean build") |
---|
[899e084] | 75 | shutil.rmtree(SASVIEW_BUILD) |
---|
[18e7309] | 76 | |
---|
[e615a0d] | 77 | # 'sys.maxsize' and 64bit: Not supported for python2.5 |
---|
[899e084] | 78 | is_64bits = sys.maxsize > 2**32 |
---|
[e79a467] | 79 | |
---|
[7a04dbb] | 80 | enable_openmp = False |
---|
[f36e01f] | 81 | if sys.platform == 'darwin': |
---|
[f468791] | 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: |
---|
[f3bf622] | 92 | print("PROBLEM determining Darwin version") |
---|
[b30ed8f] | 93 | |
---|
| 94 | # Options to enable OpenMP |
---|
[f36e01f] | 95 | copt = {'msvc': ['/openmp'], |
---|
| 96 | 'mingw32': ['-fopenmp'], |
---|
| 97 | 'unix': ['-fopenmp']} |
---|
| 98 | lopt = {'msvc': ['/MANIFEST'], |
---|
| 99 | 'mingw32': ['-fopenmp'], |
---|
| 100 | 'unix': ['-lgomp']} |
---|
[13f00a0] | 101 | |
---|
[ebdb833] | 102 | # Platform-specific link options |
---|
[f36e01f] | 103 | platform_lopt = {'msvc': ['/MANIFEST']} |
---|
[307fa4f] | 104 | platform_copt = {} |
---|
[b9c8fc5] | 105 | |
---|
| 106 | # Set copts to get compile working on OS X >= 10.9 using clang |
---|
[f36e01f] | 107 | if sys.platform == 'darwin': |
---|
[b9c8fc5] | 108 | try: |
---|
| 109 | darwin_ver = int(os.uname()[2].split('.')[0]) |
---|
[4adf48e] | 110 | if darwin_ver >= 13 and darwin_ver < 14: |
---|
[f36e01f] | 111 | platform_copt = { |
---|
| 112 | 'unix': ['-Wno-error=unused-command-line-argument-hard-error-in-future']} |
---|
[b9c8fc5] | 113 | except: |
---|
[f3bf622] | 114 | print("PROBLEM determining Darwin version") |
---|
[b9c8fc5] | 115 | |
---|
| 116 | |
---|
[5972029] | 117 | class 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 |
---|
[1829835] | 130 | |
---|
[5972029] | 131 | def run(self): |
---|
| 132 | pass |
---|
[ebdb833] | 133 | |
---|
[f36e01f] | 134 | |
---|
| 135 | class build_ext_subclass(build_ext): |
---|
[13f00a0] | 136 | def build_extensions(self): |
---|
| 137 | # Get 64-bitness |
---|
| 138 | c = self.compiler.compiler_type |
---|
[f3bf622] | 139 | print("Compiling with %s (64bit=%s)" % (c, str(is_64bits))) |
---|
[18e7309] | 140 | |
---|
[ebdb833] | 141 | # OpenMP build options |
---|
[b30ed8f] | 142 | if enable_openmp: |
---|
[f3bf622] | 143 | if c in copt: |
---|
[5980b1a] | 144 | for e in self.extensions: |
---|
[f36e01f] | 145 | e.extra_compile_args = copt[c] |
---|
[f3bf622] | 146 | if c in lopt: |
---|
[13f00a0] | 147 | for e in self.extensions: |
---|
[f36e01f] | 148 | e.extra_link_args = lopt[c] |
---|
[18e7309] | 149 | |
---|
[ebdb833] | 150 | # Platform-specific build options |
---|
[f3bf622] | 151 | if c in platform_lopt: |
---|
[ebdb833] | 152 | for e in self.extensions: |
---|
[f36e01f] | 153 | e.extra_link_args = platform_lopt[c] |
---|
[ebdb833] | 154 | |
---|
[f3bf622] | 155 | if c in platform_copt: |
---|
[1829835] | 156 | for e in self.extensions: |
---|
[f36e01f] | 157 | e.extra_compile_args = platform_copt[c] |
---|
[1829835] | 158 | |
---|
[13f00a0] | 159 | build_ext.build_extensions(self) |
---|
[d6bc28cf] | 160 | |
---|
[f36e01f] | 161 | |
---|
[968aa6e] | 162 | class 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 | |
---|
[d8c4019] | 172 | def run(self): |
---|
[115eb7e] | 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 |
---|
[14bb7a4] | 178 | SASMODELS_DOCPATH = os.path.abspath(os.path.join(os.getcwd(), '..', 'sasmodels', 'doc')) |
---|
| 179 | print("========= check for sasmodels at", SASMODELS_DOCPATH, "============") |
---|
[6c7e4cc1] | 180 | if os.path.exists(SASMODELS_DOCPATH): |
---|
| 181 | if os.path.isdir(SASMODELS_DOCPATH): |
---|
[115eb7e] | 182 | # if available, build sasmodels docs |
---|
[21bba86] | 183 | print("============= Building sasmodels model documentation ===============") |
---|
[14bb7a4] | 184 | smdocbuild = subprocess.call(["make", "-C", SASMODELS_DOCPATH, "html"]) |
---|
[6c7e4cc1] | 185 | else: |
---|
| 186 | # if not available warning message |
---|
[21bba86] | 187 | print("== !!WARNING!! sasmodels directory not found. Cannot build model docs. ==") |
---|
[115eb7e] | 188 | |
---|
| 189 | #Now build sasview (+sasmodels) docs |
---|
[d8c4019] | 190 | sys.path.append("docs/sphinx-docs") |
---|
| 191 | import build_sphinx |
---|
[c2ee2b1] | 192 | build_sphinx.rebuild() |
---|
[968aa6e] | 193 | |
---|
[f36e01f] | 194 | |
---|
[3a39c2e] | 195 | # sas module |
---|
| 196 | package_dir["sas"] = os.path.join("src", "sas") |
---|
| 197 | packages.append("sas") |
---|
[29e96f3] | 198 | |
---|
[e0bbb7c] | 199 | # sas module |
---|
| 200 | package_dir["sas.sasgui"] = os.path.join("src", "sas", "sasgui") |
---|
| 201 | packages.append("sas.sasgui") |
---|
| 202 | |
---|
| 203 | # sas module |
---|
| 204 | package_dir["sas.sascalc"] = os.path.join("src", "sas", "sascalc") |
---|
| 205 | packages.append("sas.sascalc") |
---|
| 206 | |
---|
| 207 | # sas.sascalc.invariant |
---|
[f36e01f] | 208 | package_dir["sas.sascalc.invariant"] = os.path.join( |
---|
| 209 | "src", "sas", "sascalc", "invariant") |
---|
[e0bbb7c] | 210 | packages.extend(["sas.sascalc.invariant"]) |
---|
[d6bc28cf] | 211 | |
---|
[d85c194] | 212 | # sas.sasgui.guiframe |
---|
| 213 | guiframe_path = os.path.join("src", "sas", "sasgui", "guiframe") |
---|
| 214 | package_dir["sas.sasgui.guiframe"] = guiframe_path |
---|
[f36e01f] | 215 | package_dir["sas.sasgui.guiframe.local_perspectives"] = os.path.join( |
---|
| 216 | os.path.join(guiframe_path, "local_perspectives")) |
---|
[d85c194] | 217 | package_data["sas.sasgui.guiframe"] = ['images/*', 'media/*'] |
---|
[f36e01f] | 218 | packages.extend( |
---|
| 219 | ["sas.sasgui.guiframe", "sas.sasgui.guiframe.local_perspectives"]) |
---|
[d6bc28cf] | 220 | # build local plugin |
---|
[5980b1a] | 221 | for d in os.listdir(os.path.join(guiframe_path, "local_perspectives")): |
---|
[f36e01f] | 222 | if d not in ['.svn', '__init__.py', '__init__.pyc']: |
---|
[d85c194] | 223 | package_name = "sas.sasgui.guiframe.local_perspectives." + d |
---|
[3d24489] | 224 | packages.append(package_name) |
---|
[f36e01f] | 225 | package_dir[package_name] = os.path.join( |
---|
| 226 | guiframe_path, "local_perspectives", d) |
---|
[d6bc28cf] | 227 | |
---|
[e0bbb7c] | 228 | # sas.sascalc.dataloader |
---|
[f36e01f] | 229 | package_dir["sas.sascalc.dataloader"] = os.path.join( |
---|
| 230 | "src", "sas", "sascalc", "dataloader") |
---|
[7a5d066] | 231 | package_data["sas.sascalc.dataloader.readers"] = ['schema/*.xsd'] |
---|
[f36e01f] | 232 | packages.extend(["sas.sascalc.dataloader", "sas.sascalc.dataloader.readers", |
---|
| 233 | "sas.sascalc.dataloader.readers.schema"]) |
---|
[d6bc28cf] | 234 | |
---|
| 235 | |
---|
[e0bbb7c] | 236 | # sas.sascalc.calculator |
---|
[9e531f2] | 237 | gen_dir = os.path.join("src", "sas", "sascalc", "calculator", "c_extensions") |
---|
| 238 | package_dir["sas.sascalc.calculator.core"] = gen_dir |
---|
[f36e01f] | 239 | package_dir["sas.sascalc.calculator"] = os.path.join( |
---|
| 240 | "src", "sas", "sascalc", "calculator") |
---|
| 241 | packages.extend(["sas.sascalc.calculator", "sas.sascalc.calculator.core"]) |
---|
| 242 | ext_modules.append(Extension("sas.sascalc.calculator.core.sld2i", |
---|
| 243 | sources=[ |
---|
| 244 | os.path.join(gen_dir, "sld2i_module.cpp"), |
---|
| 245 | os.path.join(gen_dir, "sld2i.cpp"), |
---|
| 246 | os.path.join(gen_dir, "libfunc.c"), |
---|
| 247 | os.path.join(gen_dir, "librefl.c"), |
---|
| 248 | ], |
---|
| 249 | include_dirs=[gen_dir], |
---|
| 250 | ) |
---|
| 251 | ) |
---|
[9e531f2] | 252 | |
---|
[b699768] | 253 | # sas.sascalc.pr |
---|
[f36e01f] | 254 | srcdir = os.path.join("src", "sas", "sascalc", "pr", "c_extensions") |
---|
[b699768] | 255 | package_dir["sas.sascalc.pr.core"] = srcdir |
---|
[f36e01f] | 256 | package_dir["sas.sascalc.pr"] = os.path.join("src", "sas", "sascalc", "pr") |
---|
| 257 | packages.extend(["sas.sascalc.pr", "sas.sascalc.pr.core"]) |
---|
| 258 | ext_modules.append(Extension("sas.sascalc.pr.core.pr_inversion", |
---|
| 259 | sources=[os.path.join(srcdir, "Cinvertor.c"), |
---|
| 260 | os.path.join(srcdir, "invertor.c"), |
---|
| 261 | ], |
---|
| 262 | include_dirs=[], |
---|
| 263 | )) |
---|
[18e7309] | 264 | |
---|
| 265 | |
---|
| 266 | # sas.sascalc.file_converter |
---|
| 267 | mydir = os.path.join("src", "sas", "sascalc", "file_converter", "c_ext") |
---|
| 268 | package_dir["sas.sascalc.file_converter.core"] = mydir |
---|
[f36e01f] | 269 | package_dir["sas.sascalc.file_converter"] = os.path.join( |
---|
| 270 | "src", "sas", "sascalc", "file_converter") |
---|
| 271 | packages.extend(["sas.sascalc.file_converter", |
---|
| 272 | "sas.sascalc.file_converter.core"]) |
---|
| 273 | ext_modules.append(Extension("sas.sascalc.file_converter.core.bsl_loader", |
---|
| 274 | sources=[os.path.join(mydir, "bsl_loader.c")], |
---|
| 275 | include_dirs=[np.get_include()], |
---|
| 276 | )) |
---|
| 277 | |
---|
| 278 | # sas.sascalc.corfunc |
---|
| 279 | package_dir["sas.sascalc.corfunc"] = os.path.join( |
---|
| 280 | "src", "sas", "sascalc", "corfunc") |
---|
[b854587] | 281 | |
---|
[1e13b53] | 282 | packages.extend(["sas.sascalc.corfunc"]) |
---|
| 283 | |
---|
[b699768] | 284 | # sas.sascalc.fit |
---|
| 285 | package_dir["sas.sascalc.fit"] = os.path.join("src", "sas", "sascalc", "fit") |
---|
| 286 | packages.append("sas.sascalc.fit") |
---|
[3d24489] | 287 | |
---|
| 288 | # Perspectives |
---|
[f36e01f] | 289 | package_dir["sas.sasgui.perspectives"] = os.path.join( |
---|
| 290 | "src", "sas", "sasgui", "perspectives") |
---|
| 291 | package_dir["sas.sasgui.perspectives.pr"] = os.path.join( |
---|
| 292 | "src", "sas", "sasgui", "perspectives", "pr") |
---|
| 293 | packages.extend(["sas.sasgui.perspectives", "sas.sasgui.perspectives.pr"]) |
---|
[1e13b53] | 294 | package_data["sas.sasgui.perspectives.pr"] = ['media/*'] |
---|
[d85c194] | 295 | |
---|
[f36e01f] | 296 | package_dir["sas.sasgui.perspectives.invariant"] = os.path.join( |
---|
| 297 | "src", "sas", "sasgui", "perspectives", "invariant") |
---|
[d85c194] | 298 | packages.extend(["sas.sasgui.perspectives.invariant"]) |
---|
[f36e01f] | 299 | package_data['sas.sasgui.perspectives.invariant'] = [ |
---|
| 300 | os.path.join("media", '*')] |
---|
| 301 | |
---|
| 302 | package_dir["sas.sasgui.perspectives.fitting"] = os.path.join( |
---|
| 303 | "src", "sas", "sasgui", "perspectives", "fitting") |
---|
| 304 | package_dir["sas.sasgui.perspectives.fitting.plugin_models"] = os.path.join( |
---|
| 305 | "src", "sas", "sasgui", "perspectives", "fitting", "plugin_models") |
---|
| 306 | packages.extend(["sas.sasgui.perspectives.fitting", |
---|
| 307 | "sas.sasgui.perspectives.fitting.plugin_models"]) |
---|
| 308 | package_data['sas.sasgui.perspectives.fitting'] = [ |
---|
| 309 | 'media/*', 'plugin_models/*'] |
---|
| 310 | |
---|
| 311 | packages.extend(["sas.sasgui.perspectives", |
---|
| 312 | "sas.sasgui.perspectives.calculator"]) |
---|
[d85c194] | 313 | package_data['sas.sasgui.perspectives.calculator'] = ['images/*', 'media/*'] |
---|
| 314 | |
---|
[f36e01f] | 315 | package_dir["sas.sasgui.perspectives.corfunc"] = os.path.join( |
---|
| 316 | "src", "sas", "sasgui", "perspectives", "corfunc") |
---|
[1e13b53] | 317 | packages.extend(["sas.sasgui.perspectives.corfunc"]) |
---|
| 318 | package_data['sas.sasgui.perspectives.corfunc'] = ['media/*'] |
---|
| 319 | |
---|
[f36e01f] | 320 | package_dir["sas.sasgui.perspectives.file_converter"] = os.path.join( |
---|
| 321 | "src", "sas", "sasgui", "perspectives", "file_converter") |
---|
[1e13b53] | 322 | packages.extend(["sas.sasgui.perspectives.file_converter"]) |
---|
| 323 | package_data['sas.sasgui.perspectives.file_converter'] = ['media/*'] |
---|
[d85c194] | 324 | |
---|
[d6bc28cf] | 325 | # Data util |
---|
[f36e01f] | 326 | package_dir["sas.sascalc.data_util"] = os.path.join( |
---|
| 327 | "src", "sas", "sascalc", "data_util") |
---|
[b699768] | 328 | packages.append("sas.sascalc.data_util") |
---|
[d6bc28cf] | 329 | |
---|
| 330 | # Plottools |
---|
[f36e01f] | 331 | package_dir["sas.sasgui.plottools"] = os.path.join( |
---|
| 332 | "src", "sas", "sasgui", "plottools") |
---|
[d7bb526] | 333 | packages.append("sas.sasgui.plottools") |
---|
[d6bc28cf] | 334 | |
---|
[9274711] | 335 | # # Last of the sas.models |
---|
| 336 | # package_dir["sas.models"] = os.path.join("src", "sas", "models") |
---|
| 337 | # packages.append("sas.models") |
---|
[2d1b700] | 338 | |
---|
[d6bc28cf] | 339 | EXTENSIONS = [".c", ".cpp"] |
---|
| 340 | |
---|
[f36e01f] | 341 | |
---|
[d6bc28cf] | 342 | def append_file(file_list, dir_path): |
---|
| 343 | """ |
---|
| 344 | Add sources file to sources |
---|
| 345 | """ |
---|
| 346 | for f in os.listdir(dir_path): |
---|
| 347 | if os.path.isfile(os.path.join(dir_path, f)): |
---|
| 348 | _, ext = os.path.splitext(f) |
---|
[4c29e4d] | 349 | if ext.lower() in EXTENSIONS: |
---|
[9e531f2] | 350 | file_list.append(os.path.join(dir_path, f)) |
---|
[d6bc28cf] | 351 | elif os.path.isdir(os.path.join(dir_path, f)) and \ |
---|
| 352 | not f.startswith("."): |
---|
| 353 | sub_dir = os.path.join(dir_path, f) |
---|
| 354 | for new_f in os.listdir(sub_dir): |
---|
| 355 | if os.path.isfile(os.path.join(sub_dir, new_f)): |
---|
| 356 | _, ext = os.path.splitext(new_f) |
---|
[4c29e4d] | 357 | if ext.lower() in EXTENSIONS: |
---|
[9e531f2] | 358 | file_list.append(os.path.join(sub_dir, new_f)) |
---|
[820df88] | 359 | |
---|
[f36e01f] | 360 | |
---|
[820df88] | 361 | # Comment out the following to avoid rebuilding all the models |
---|
[9e531f2] | 362 | file_sources = [] |
---|
| 363 | append_file(file_sources, gen_dir) |
---|
[820df88] | 364 | |
---|
[f36e01f] | 365 | # Wojtek's hacky way to add doc files while bundling egg |
---|
| 366 | # def add_doc_files(directory): |
---|
[5881b17] | 367 | # paths = [] |
---|
| 368 | # for (path, directories, filenames) in os.walk(directory): |
---|
| 369 | # for filename in filenames: |
---|
| 370 | # paths.append(os.path.join(path, filename)) |
---|
| 371 | # return paths |
---|
| 372 | |
---|
| 373 | #doc_files = add_doc_files('doc') |
---|
| 374 | |
---|
[c329f4d] | 375 | # SasView |
---|
[ed03b99] | 376 | package_data['sas'] = ['logging.ini'] |
---|
[5881b17] | 377 | package_data['sas.sasview'] = ['images/*', |
---|
[bbb8a56] | 378 | 'media/*', |
---|
[d4c88e24] | 379 | 'test/*.txt', |
---|
[bbb8a56] | 380 | 'test/1d_data/*', |
---|
| 381 | 'test/2d_data/*', |
---|
[27109e5] | 382 | 'test/convertible_files/*', |
---|
| 383 | 'test/coordinate_data/*', |
---|
| 384 | 'test/image_data/*', |
---|
| 385 | 'test/media/*', |
---|
| 386 | 'test/other_files/*', |
---|
[bbb8a56] | 387 | 'test/save_states/*', |
---|
[7152c82] | 388 | 'test/sesans_data/*', |
---|
| 389 | 'test/upcoming_formats/*', |
---|
[27109e5] | 390 | ] |
---|
[3a39c2e] | 391 | packages.append("sas.sasview") |
---|
[d6bc28cf] | 392 | |
---|
[9f32c57] | 393 | required = [ |
---|
[36ca21e] | 394 | 'bumps>=0.7.5.9', 'periodictable>=1.5.0', 'pyparsing<2.0.0', |
---|
[9f32c57] | 395 | |
---|
| 396 | # 'lxml>=2.2.2', |
---|
[db74ee8] | 397 | 'lxml', 'h5py', |
---|
[9f32c57] | 398 | |
---|
[f36e01f] | 399 | # The following dependecies won't install automatically, so assume them |
---|
| 400 | # The numbers should be bumped up for matplotlib and wxPython as well. |
---|
[9f32c57] | 401 | # 'numpy>=1.4.1', 'scipy>=0.7.2', 'matplotlib>=0.99.1.1', |
---|
| 402 | # 'wxPython>=2.8.11', 'pil', |
---|
[f36e01f] | 403 | ] |
---|
[213b445] | 404 | |
---|
[f36e01f] | 405 | if os.name == 'nt': |
---|
[7a211030] | 406 | required.extend(['html5lib', 'reportlab']) |
---|
[7f59928e] | 407 | else: |
---|
[775d06f] | 408 | # 'pil' is now called 'pillow' |
---|
[5f6336f] | 409 | required.extend(['pillow']) |
---|
[5881b17] | 410 | |
---|
[18e7309] | 411 | # Set up SasView |
---|
[d6bc28cf] | 412 | setup( |
---|
[c329f4d] | 413 | name="sasview", |
---|
[f36e01f] | 414 | version=VERSION, |
---|
| 415 | description="SasView application", |
---|
| 416 | author="SasView Team", |
---|
| 417 | author_email="developers@sasview.org", |
---|
| 418 | url="http://sasview.org", |
---|
| 419 | license="PSF", |
---|
| 420 | keywords="small-angle x-ray and neutron scattering analysis", |
---|
| 421 | download_url="https://github.com/SasView/sasview.git", |
---|
| 422 | package_dir=package_dir, |
---|
| 423 | packages=packages, |
---|
| 424 | package_data=package_data, |
---|
| 425 | ext_modules=ext_modules, |
---|
| 426 | install_requires=required, |
---|
| 427 | zip_safe=False, |
---|
| 428 | entry_points={ |
---|
| 429 | 'console_scripts': [ |
---|
| 430 | "sasview = sas.sasview.sasview:run", |
---|
| 431 | ] |
---|
| 432 | }, |
---|
| 433 | cmdclass={'build_ext': build_ext_subclass, |
---|
| 434 | 'docs': BuildSphinxCommand, |
---|
| 435 | 'disable_openmp': DisableOpenMPCommand} |
---|
| 436 | ) |
---|