forked from healpy/healpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·460 lines (413 loc) · 16.4 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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
#!/usr/bin/env python
import os
import errno
import fnmatch
import sys
import shlex
from Cython.Distutils import build_ext
from distutils.sysconfig import get_config_var, get_config_vars
from subprocess import check_output, CalledProcessError, check_call
from setuptools import setup, Extension
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
TEST_HELP = """
Note: running tests is no longer done using 'python setup.py test'. Instead
you will need to run:
pytest
to also run the doctests:
pytest --doctest-plus --doctest-cython
"""
if "test" in sys.argv:
print(TEST_HELP)
sys.exit(1)
# 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"] = str(
get_config_var("MACOSX_DEPLOYMENT_TARGET")
)
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 = {}
def env(self):
"""Construct an environment dictionary suitable for having pkg-config
pick up .pc files in the build_clib directory."""
# Test if pkg-config is present. If not, fall back to pykg-config.
try:
env = self._env
except AttributeError:
env = dict(os.environ)
try:
check_output(["pkg-config", "--version"])
except OSError as e:
if e.errno != errno.ENOENT:
raise
log.warn("pkg-config is not installed, falling back to pykg-config")
env["PKG_CONFIG"] = (
sys.executable + " " + os.path.abspath("run_pykg_config.py")
)
else:
env["PKG_CONFIG"] = "pkg-config"
build_clib = os.path.realpath(self.build_clib)
pkg_config_path = (
os.path.join(build_clib, "lib64", "pkgconfig")
+ ":"
+ os.path.join(build_clib, "lib", "pkgconfig")
)
try:
pkg_config_path += ":" + env["PKG_CONFIG_PATH"]
except KeyError:
pass
env["PKG_CONFIG_PATH"] = pkg_config_path
self._env = env
return env
def pkgconfig(self, *packages):
env = self.env()
PKG_CONFIG = tuple(shlex.split(env["PKG_CONFIG"], posix=(os.sep == "/")))
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=env).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)
env = self.env()
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"], env=env
)
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)
env = self.env()
# 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 env:
cc = env["CC"]
if "CXX" in env:
cxx = env["CXX"]
if "CFLAGS" in env:
cflags = opt + " " + env["CFLAGS"]
if "CXXFLAGS" in env:
cxxflags = opt + " " + env["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(env, 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=env)
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 finalize_options(self):
build_ext.finalize_options(self)
# Add Numpy header search path path
import numpy
self.include_dirs.append(numpy.get_include())
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)
exec(open("healpy/version.py").read())
def readme():
with open("README.rst") as f:
return f.read()
setup(
name="healpy",
version=__version__,
description="Healpix tools package for Python",
long_description=readme(),
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 :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Visualization",
],
author="C. Rosset, A. Zonca",
author_email="[email protected]",
url="http://github.com/healpy",
packages=["healpy", "healpy.test"],
libraries=[
(
"cfitsio",
{
"pkg_config_name": "cfitsio",
"local_source": "cfitsio",
"supports_non_srcdir_builds": False,
},
),
(
"sharp",
{
"pkg_config_name": "libsharp",
"local_source": "healpixsubmodule/src/common_libraries/libsharp",
},
),
(
"healpix_cxx",
{
"pkg_config_name": "healpix_cxx >= 3.80.0",
"local_source": "healpixsubmodule/src/cxx",
},
),
],
py_modules=[
"healpy.pixelfunc",
"healpy.sphtfunc",
"healpy.visufunc",
"healpy.fitsfunc",
"healpy.projector",
"healpy.rotator",
"healpy.projaxes",
"healpy.version",
],
cmdclass={"build_ext": custom_build_ext, "build_clib": build_external_clib},
ext_modules=[
Extension(
"healpy._healpy_pixel_lib",
sources=["healpy/src/_healpy_pixel_lib.cc"],
language="c++",
extra_compile_args=["-std=c++11"],
),
Extension(
"healpy._healpy_sph_transform_lib",
sources=["healpy/src/_healpy_sph_transform_lib.cc"],
language="c++",
extra_compile_args=["-std=c++11"],
),
Extension(
"healpy._query_disc",
["healpy/src/_query_disc.pyx"],
language="c++",
extra_compile_args=["-std=c++11"],
cython_directives=dict(embedsignature=True),
),
Extension(
"healpy._sphtools",
["healpy/src/_sphtools.pyx"],
language="c++",
extra_compile_args=["-std=c++11"],
cython_directives=dict(embedsignature=True),
),
Extension(
"healpy._pixelfunc",
["healpy/src/_pixelfunc.pyx"],
language="c++",
extra_compile_args=["-std=c++11"],
cython_directives=dict(embedsignature=True),
),
Extension(
"healpy._masktools",
["healpy/src/_masktools.pyx"],
language="c++",
extra_compile_args=["-std=c++11"],
cython_directives=dict(embedsignature=True),
),
Extension(
"healpy._hotspots",
["healpy/src/_hotspots.pyx", "healpy/src/_healpy_hotspots_lib.cc"],
language="c++",
extra_compile_args=["-std=c++11"],
cython_directives=dict(embedsignature=True),
),
Extension(
"healpy._line_integral_convolution",
[
"healpy/src/_line_integral_convolution.pyx",
"healpixsubmodule/src/cxx/Healpix_cxx/alice3.cc",
],
language="c++",
extra_compile_args=[
"-std=c++11",
"-Ihealpixsubmodule/src/cxx/cxxsupport",
"-Ihealpixsubmodule/src/cxx/Healpix_cxx",
],
cython_directives=dict(embedsignature=True),
),
],
package_data={
"healpy": [
"data/*.fits",
"data/*_cmap.dat",
"data/totcls.dat",
"test/data/*.fits",
"test/data/*.fits.gz",
"test/data/*.sh",
]
},
install_requires=["matplotlib", "numpy>=1.13", "astropy", "scipy"],
tests_require=["pytest", "pytest-cython", "pytest-doctestplus", "requests"],
test_suite="healpy",
license="GPLv2",
scripts=["bin/healpy_get_wmap_maps.sh"],
python_requires=">=3.8",
)