forked from healpy/healpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·446 lines (387 loc) · 17.9 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
#!/usr/bin/env python
# Bootstrap setuptools installation. We require setuptools >= 3.2 because of a
# bug in earlier versions regarding C++ sources generated with Cython. See:
# https://pypi.python.org/pypi/setuptools/3.6#id171
try:
import pkg_resources
pkg_resources.require("setuptools >= 3.2")
except:
from ez_setup import use_setuptools
use_setuptools()
import os
from os.path import join
import errno
import fnmatch
import sys
import shlex
from distutils.sysconfig import get_config_var, get_config_vars
from setuptools import setup, Extension
from setuptools.command.test import test as TestCommand
from distutils.command.build_clib import build_clib
from distutils.errors import DistutilsExecError
from distutils.dir_util import mkpath
from distutils.file_util import copy_file
from distutils import log
# Apple switched default C++ standard libraries (from gcc's libstdc++ to
# clang's libc++), but some pre-packaged Python environments such as Anaconda
# are built against the old C++ standard library. Luckily, we don't have to
# actually detect which C++ standard library was used to build the Python
# interpreter. We just have to propagate MACOSX_DEPLOYMENT_TARGET from the
# configuration variables to the environment.
#
# This workaround fixes <https://github.com/healpy/healpy/issues/151>.
if get_config_var('MACOSX_DEPLOYMENT_TARGET') and not 'MACOSX_DEPLOYMENT_TARGET' in os.environ:
os.environ['MACOSX_DEPLOYMENT_TARGET'] = get_config_var('MACOSX_DEPLOYMENT_TARGET')
#
# FIXME: Copied from Python 2.7's subprocess.check_output,
# but with the output= argument to CalledProcessError, which also
# dates to Python 2.7, removed.
#
# When Python 2.6 becomes unsupported, replace this with:
# from subprocess import check_output, CalledProcessError, check_call
#
from subprocess import Popen, PIPE, CalledProcessError, check_call
def check_output(*popenargs, **kwargs):
r"""Run command with arguments and return its output as a byte string.
If the exit code was non-zero it raises a CalledProcessError. The
CalledProcessError object will have the return code in the returncode
attribute and output in the output attribute.
The arguments are the same as for the Popen constructor. Example:
>>> check_output(["ls", "-l", "/dev/null"])
'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n'
The stdout argument is not allowed as it is used internally.
To capture standard error in the result, use stderr=STDOUT.
>>> check_output(["/bin/sh", "-c",
... "ls -l non_existent_file ; exit 0"],
... stderr=STDOUT)
'ls: non_existent_file: No such file or directory\n'
"""
if 'stdout' in kwargs:
raise ValueError('stdout argument not allowed, it will be overridden.')
process = Popen(stdout=PIPE, *popenargs, **kwargs)
output, unused_err = process.communicate()
retcode = process.poll()
if retcode:
cmd = kwargs.get("args")
if cmd is None:
cmd = popenargs[0]
raise CalledProcessError(retcode, cmd)
return output
#
# FIXME: end section copied from Python 2.7's subprocess.check_output
#
# For ReadTheDocs, do not build the extensions, only install .py files
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
cython_require = 'Cython >= 0.16'
try:
pkg_resources.require(cython_require)
from Cython.Distutils import build_ext
ext = "pyx"
extcpp = "pyx"
except:
# User does not have a sufficiently new version of Cython.
if os.path.exists('healpy/src/_query_disc.cpp'):
# This source package already contains the Cython-generated sources,
# so we can just use them.
from distutils.command.build_ext import build_ext
ext = "c"
extcpp = "cpp"
else:
# This source does not contain the Cython-generated sources, so fail.
raise DistutilsExecError('''
It looks like you are attempting to build from the Healpy development
sources, i.e., from GitHub. You need {0} to build Healpy from
development sources.
Either install Healpy from an official stable release from:
https://pypi.python.org/pypi/healpy
OR, to build from development sources, first get {0} from:
https://pypi.python.org/pypi/Cython'''.format(cython_require))
if on_rtd:
numpy_inc = ''
else:
from numpy import get_include
numpy_inc = get_include()
# Test if pkg-config is present. If not, fall back to pykg-config.
try:
check_output(['pkg-config', '--version'])
setup_requires = []
except OSError as e:
if e.errno != errno.ENOENT:
raise ValueError
log.warn('pkg-config is not installed, falling back to pykg-config')
setup_requires = ['pykg-config >= 1.2.0']
os.environ['PKG_CONFIG'] = sys.executable + ' ' + os.path.abspath('pykg_config.py')
class build_external_clib(build_clib):
"""Subclass of Distutils' standard build_clib subcommand. Adds support for
libraries that are installed externally and detected with pkg-config, with
an optional fallback to build from a local configure-make-install style
distribution."""
def __init__(self, dist):
build_clib.__init__(self, dist)
self.build_args = {}
@property
def _environ(self):
"""Construct an environment dictionary suitable for having pkg-config
pick up .pc files in the build_clib directory."""
pkg_config_path = os.path.join(os.path.realpath(self.build_clib), 'lib', 'pkgconfig')
try:
pkg_config_path += ':' + os.environ['PKG_CONFIG_PATH']
except KeyError:
pass
return dict(os.environ, PKG_CONFIG_PATH=pkg_config_path)
def pkgconfig(self, *packages):
PKG_CONFIG = tuple(shlex.split(os.environ.get('PKG_CONFIG', 'pkg-config')))
kw = {}
index_key_flag = (
(2, '--cflags-only-I', ('include_dirs',)),
(0, '--cflags-only-other', ('extra_compile_args', 'extra_link_args')),
(2, '--libs-only-L', ('library_dirs', 'runtime_library_dirs')),
(2, '--libs-only-l', ('libraries',)),
(0, '--libs-only-other', ('extra_link_args',)))
for index, flag, keys in index_key_flag:
cmd = PKG_CONFIG + (flag,) + tuple(packages)
log.debug('%s', ' '.join(cmd))
args = [token[index:].decode() for token in check_output(cmd, env=self._environ).split()]
if args:
for key in keys:
kw.setdefault(key, []).extend(args)
return kw
def finalize_options(self):
"""Run 'autoreconf -i' for any bundled libraries to generate the
configure script."""
build_clib.finalize_options(self)
for lib_name, build_info in self.libraries:
if 'sources' not in build_info:
log.info("checking if configure script for library '%s' exists", lib_name)
if not os.path.exists(os.path.join(build_info['local_source'], 'configure')):
log.info("running 'autoreconf -i' for library '%s'", lib_name)
check_call(['autoreconf', '-i'], cwd=build_info['local_source'])
def build_library(self, library, pkg_config_name, local_source=None, supports_non_srcdir_builds=True):
log.info("checking if library '%s' is installed", library)
try:
build_args = self.pkgconfig(pkg_config_name)
log.info("found '%s' installed, using it", library)
except CalledProcessError:
# If local_source is not specified, then immediately fail.
if local_source is None:
raise DistutilsExecError("library '%s' is not installed", library)
log.info("building library '%s' from source", library)
# Determine which compilers we are to use, and what flags.
# This is based on what distutils.sysconfig.customize_compiler()
# does, but that function has a problem that it doesn't produce
# necessary (e.g. architecture) flags for C++ compilers.
cc, cxx, opt, cflags = get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS')
cxxflags = cflags
if 'CC' in os.environ:
cc = os.environ['CC']
if 'CXX' in os.environ:
cxx = os.environ['CXX']
if 'CFLAGS' in os.environ:
cflags = opt + ' ' + os.environ['CFLAGS']
if 'CXXLAGS' in os.environ:
cxxflags = opt + ' ' + os.environ['CXXFLAGS']
# Use a subdirectory of build_temp as the build directory.
build_temp = os.path.realpath(os.path.join(self.build_temp, library))
# Destination for headers and libraries is build_clib.
build_clib = os.path.realpath(self.build_clib)
# Create build directories if they do not yet exist.
mkpath(build_temp)
mkpath(build_clib)
if not supports_non_srcdir_builds:
self._stage_files_recursive(local_source, build_temp)
# Run configure.
cmd = ['/bin/sh', os.path.join(os.path.realpath(local_source), 'configure'),
'--prefix=' + build_clib,
'--disable-shared',
'--with-pic',
'--disable-maintainer-mode']
log.info('%s', ' '.join(cmd))
check_call(cmd, cwd=build_temp, env=dict(self._environ,
CC=cc, CXX=cxx, CFLAGS=cflags, CXXFLAGS=cxxflags))
# Run make install.
cmd = ['make', 'install']
log.info('%s', ' '.join(cmd))
check_call(cmd, cwd=build_temp, env=self._environ)
build_args = self.pkgconfig(pkg_config_name)
return build_args
# Done!
@staticmethod
def _list_files_recursive(path, skip=('.*', '*.o', 'autom4te.cache')):
"""Yield paths to all of the files contained within the given path,
following symlinks. If skip is a tuple of fnmatch()-style wildcard
strings, skip any directory or filename matching any of the patterns in
skip."""
for dirpath, dirnames, filenames in os.walk(path, followlinks=True):
if not any(any(fnmatch.fnmatch(p, s) for s in skip) for p in dirpath.split(os.sep)):
for filename in filenames:
if not any(fnmatch.fnmatch(filename, s) for s in skip):
yield os.path.join(dirpath, filename)
@staticmethod
def _stage_files_recursive(src, dest, skip=None):
"""Hard link or copy all of the files in the path src into the path dest.
Subdirectories are created as needed, and files in dest are overwritten."""
# Use hard links if they are supported on this system.
if hasattr(os, 'link'):
link='hard'
elif hasattr(os, 'symlink'):
link='sym'
else:
link=None
for dirpath, dirnames, filenames in os.walk(src, followlinks=True):
if not any(p.startswith('.') for p in dirpath.split(os.sep)):
dest_dirpath = os.path.join(dest, dirpath.split(src, 1)[1].lstrip(os.sep))
mkpath(dest_dirpath)
for filename in filenames:
if not filename.startswith('.'):
src_path = os.path.join(dirpath, filename)
dest_path = os.path.join(dest_dirpath, filename)
if not os.path.exists(dest_path):
copy_file(os.path.join(dirpath, filename), os.path.join(dest_dirpath, filename))
def get_source_files(self):
"""Copied from Distutils' own build_clib, but modified so that it is not
an error for a build_info dictionary to lack a 'sources' key. If there
is no 'sources' key, then all files contained within the path given by
the 'local_sources' value are returned."""
self.check_library_list(self.libraries)
filenames = []
for (lib_name, build_info) in self.libraries:
sources = build_info.get('sources')
if sources is None or not isinstance(sources, (list, tuple)):
sources = list(self._list_files_recursive(build_info['local_source']))
filenames.extend(sources)
return filenames
def build_libraries(self, libraries):
# Build libraries that have no 'sources' key, accumulating the output
# from pkg-config.
for lib_name, build_info in libraries:
if 'sources' not in build_info:
for key, value in self.build_library(lib_name, **build_info).items():
if key in self.build_args:
self.build_args[key].extend(value)
else:
self.build_args[key] = value
# Use parent method to build libraries that have a 'sources' key.
build_clib.build_libraries(self, ((lib_name, build_info)
for lib_name, build_info in libraries if 'sources' in build_info))
class custom_build_ext(build_ext):
def run(self):
# If we were asked to build any C/C++ libraries, add the directory
# where we built them to the include path. (It's already on the library
# path.)
if self.distribution.has_c_libraries():
self.run_command('build_clib')
build_clib = self.get_finalized_command('build_clib')
for key, value in build_clib.build_args.items():
for ext in self.extensions:
if not hasattr(ext, key) or getattr(ext, key) is None:
setattr(ext, key, value)
else:
getattr(ext, key).extend(value)
build_ext.run(self)
class PyTest(TestCommand):
"""Custom Setuptools test command to run doctests with py.test. Based on
http://pytest.org/latest/goodpractises.html#integration-with-setuptools-test-commands"""
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args.insert(0, '--doctest-modules')
def run_tests(self):
import pytest
sys.exit(pytest.main(self.test_args))
def get_version():
context = {}
try:
execfile
except NameError:
exec(open('healpy/version.py').read(), context)
else:
execfile('healpy/version.py', context)
return context['__version__']
healpy_pixel_lib_src = '_healpy_pixel_lib.cc'
healpy_spht_src = '_healpy_sph_transform_lib.cc'
healpy_fitsio_src = '_healpy_fitsio_lib.cc'
#start with base extension
pixel_lib = Extension('healpy._healpy_pixel_lib',
sources=[join('healpy','src', healpy_pixel_lib_src)],
include_dirs=[numpy_inc],
language='c++'
)
spht_lib = Extension('healpy._healpy_sph_transform_lib',
sources=[join('healpy','src', healpy_spht_src)],
include_dirs=[numpy_inc],
language='c++'
)
hfits_lib = Extension('healpy._healpy_fitsio_lib',
sources=[join('healpy','src', healpy_fitsio_src)],
include_dirs=[numpy_inc],
language='c++'
)
if on_rtd:
libraries = []
cmdclass = {}
extension_list = []
else:
cmdclass = {
'build_ext': custom_build_ext,
'build_clib': build_external_clib,
'test': PyTest}
libraries = [
('cfitsio', {
'pkg_config_name': 'cfitsio',
'local_source': 'cfitsio',
'supports_non_srcdir_builds': False}),
('healpix_cxx', {
'pkg_config_name': 'healpix_cxx',
'local_source': 'healpixsubmodule/src/cxx/autotools'})
]
extension_list = [pixel_lib, spht_lib, hfits_lib,
Extension("healpy._query_disc",
['healpy/src/_query_disc.'+extcpp],
include_dirs=[numpy_inc],
language='c++'),
Extension("healpy._sphtools",
['healpy/src/_sphtools.'+extcpp],
include_dirs=[numpy_inc],
language='c++'),
Extension("healpy._pixelfunc",
['healpy/src/_pixelfunc.'+extcpp],
include_dirs=[numpy_inc],
language='c++'),
]
for e in extension_list[-3:]: #extra setup for Cython extensions
e.pyrex_directives = {"embedsignature": True}
setup(name='healpy',
version=get_version(),
description='Healpix tools package for Python',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX',
'Programming Language :: C++',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Visualization'
],
author='C. Rosset, A. Zonca',
author_email='cyrille.rosset@apc.univ-paris-diderot.fr',
url='http://github.com/healpy',
packages=['healpy','healpy.test'],
libraries=libraries,
py_modules=['healpy.pixelfunc','healpy.sphtfunc',
'healpy.visufunc','healpy.fitsfunc',
'healpy.projector','healpy.rotator',
'healpy.projaxes','healpy.version'],
cmdclass = cmdclass,
ext_modules = extension_list,
package_data = {'healpy': ['data/*.fits', 'data/totcls.dat', 'test/data/*.fits', 'test/data/*.sh']},
setup_requires=setup_requires,
install_requires=['pyfits', 'six'],
tests_require=['pytest'],
test_suite='healpy',
license='GPLv2'
)