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