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