forked from letmaik/rawpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
322 lines (281 loc) · 12.8 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
from setuptools import setup, Extension, find_packages
import subprocess
import errno
import os
import shutil
import sys
import zipfile
import re
import glob
from urllib.request import urlretrieve
import numpy
from Cython.Build import cythonize
# As rawpy is distributed under the MIT license, it cannot use or distribute
# GPL'd code. This is relevant only for the binary wheels which would have to
# bundle the GPL'd code/algorithms (extra demosaic packs).
# Note: RAWPY_BUILD_GPL_CODE=1 only has an effect for macOS and Windows builds
# because libraw is built from source here, whereas for Linux we look
# for the library on the system.
# Note: Building GPL demosaic packs only works with libraw <= 0.18.
# See https://github.com/letmaik/rawpy/issues/72.
buildGPLCode = os.getenv('RAWPY_BUILD_GPL_CODE') == '1'
isWindows = os.name == 'nt'
isMac = sys.platform == 'darwin'
is64Bit = sys.maxsize > 2**32
# adapted from cffi's setup.py
# the following may be overridden if pkg-config exists
libraries = ['libraw']
include_dirs = []
library_dirs = []
extra_compile_args = []
extra_link_args = []
def _ask_pkg_config(resultlist, option, result_prefix='', sysroot=False):
pkg_config = os.environ.get('PKG_CONFIG','pkg-config')
try:
p = subprocess.Popen([pkg_config, option, 'libraw'],
stdout=subprocess.PIPE)
except OSError as e:
if e.errno != errno.ENOENT:
raise
else:
t = p.stdout.read().decode().strip()
if p.wait() == 0:
res = t.split()
# '-I/usr/...' -> '/usr/...'
for x in res:
assert x.startswith(result_prefix)
res = [x[len(result_prefix):] for x in res]
sysroot = sysroot and os.environ.get('PKG_CONFIG_SYSROOT_DIR', '')
if sysroot:
# old versions of pkg-config don't support this env var,
# so here we emulate its effect if needed
res = [path if path.startswith(sysroot)
else sysroot + path
for path in res]
resultlist[:] = res
def use_pkg_config():
_ask_pkg_config(include_dirs, '--cflags-only-I', '-I', sysroot=True)
_ask_pkg_config(extra_compile_args, '--cflags-only-other')
_ask_pkg_config(library_dirs, '--libs-only-L', '-L', sysroot=True)
_ask_pkg_config(extra_link_args, '--libs-only-other')
_ask_pkg_config(libraries, '--libs-only-l', '-l')
# Some thoughts on bundling LibRaw in Linux installs:
# Compiling and bundling libraw.so like in the Windows wheels is likely not
# easily possible for Linux. This is due to the fact that the dynamic linker ld
# doesn't search for libraw.so in the directory where the Python extension is in.
# The -rpath with $ORIGIN method can not be used in this case as $ORIGIN is always
# relative to the executable and not the shared library,
# see https://stackoverflow.com/q/6323603.
# But note that this was never tested and may actually still work somehow.
# matplotlib works around such problems by including external libraries as pure
# Python extensions, partly rewriting their sources and removing any dependency
# on a configure script, or cmake or other build infrastructure.
# A possible work-around could be to statically link against libraw.
if isWindows or isMac:
external_dir = os.path.abspath('external')
libraw_dir = os.path.join(external_dir, 'LibRaw')
cmake_build = os.path.join(external_dir, 'LibRaw-cmake', 'build')
install_dir = os.path.join(cmake_build, 'install')
include_dirs += [os.path.join(install_dir, 'include', 'libraw')]
library_dirs += [os.path.join(install_dir, 'lib')]
libraries = ['raw_r']
# for Windows and Mac we use cmake, so libraw_config.h will always exist
libraw_config_found = True
else:
use_pkg_config()
# check if libraw_config.h exists
# this header is only installed when using cmake
libraw_config_found = False
for include_dir in include_dirs:
if 'libraw_config.h' in os.listdir(include_dir):
libraw_config_found = True
break
define_macros = [('_HAS_LIBRAW_CONFIG_H', '1' if libraw_config_found else '0')]
if isWindows:
extra_compile_args += ['/DWIN32']
# this must be after use_pkg_config()!
include_dirs += [numpy.get_include()]
def clone_submodules():
if not os.path.exists('external/LibRaw/README.md'):
print('LibRaw git submodule is not cloned yet, will invoke "git submodule update --init" now')
if os.system('git submodule update --init') != 0:
raise Exception('git failed')
def windows_libraw_compile():
clone_submodules()
# download cmake to compile libraw
# the cmake zip contains a cmake-3.12.4-win32-x86 folder when extracted
cmake_url = 'https://cmake.org/files/v3.12/cmake-3.12.4-win32-x86.zip'
cmake = os.path.abspath('external/cmake-3.12.4-win32-x86/bin/cmake.exe')
files = [(cmake_url, 'external', cmake)]
for url, extractdir, extractcheck in files:
if not os.path.exists(extractcheck):
path = 'external/' + os.path.basename(url)
if not os.path.exists(path):
print('Downloading', url)
try:
urlretrieve(url, path)
except:
# repeat once in case of network issues
urlretrieve(url, path)
with zipfile.ZipFile(path) as z:
print('Extracting', path, 'into', extractdir)
z.extractall(extractdir)
if not os.path.exists(path):
raise RuntimeError(path + ' not found!')
# openmp dll
# VS 2017 and higher
vc_redist_dir = os.getenv('VCToolsRedistDir')
vs_target_arch = os.getenv('VSCMD_ARG_TGT_ARCH')
if not vc_redist_dir:
# VS 2015
vc_redist_dir = os.path.join(os.environ['VCINSTALLDIR'], 'redist')
vs_target_arch = 'x64' if is64Bit else 'x86'
omp_glob = os.path.join(vc_redist_dir, vs_target_arch, 'Microsoft.VC*.OpenMP', 'vcomp*.dll')
omp_dlls = glob.glob(omp_glob)
if len(omp_dlls) == 1:
has_openmp_dll = True
omp = omp_dlls[0]
elif len(omp_dlls) > 1:
print('WARNING: disabling OpenMP because multiple runtime DLLs were found:')
for omp_dll in omp_dlls:
print(omp_dll)
has_openmp_dll = False
else:
print('WARNING: disabling OpenMP because no runtime DLLs were found')
has_openmp_dll = False
# configure and compile libraw
cwd = os.getcwd()
shutil.rmtree(cmake_build, ignore_errors=True)
os.makedirs(cmake_build, exist_ok=True)
os.chdir(cmake_build)
# Hack for conda to force static linking (see https://github.com/letmaik/rawpy/issues/87)
zlib_static = os.path.join(sys.prefix, 'Library', 'lib', 'zlibstatic.lib')
if os.path.exists(zlib_static):
zlib_flag = '-DZLIB_LIBRARY=' + zlib_static + ' '
else:
zlib_flag = ''
# Important: always use Release build type, otherwise the library will depend on a
# debug version of OpenMP which is not what we bundle it with, and then it would fail
enable_openmp_flag = 'ON' if has_openmp_dll else 'OFF'
cmds = [cmake + ' .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ' +\
'-DLIBRAW_PATH=' + libraw_dir.replace('\\', '/') + ' ' +\
'-DCMAKE_CXX_FLAGS="-DUSE_X3FTOOLS -DUSE_6BY9RPI" ' +\
'-DENABLE_EXAMPLES=OFF -DENABLE_OPENMP=' + enable_openmp_flag + ' -DENABLE_RAWSPEED=OFF ' +\
('-DENABLE_DEMOSAIC_PACK_GPL2=ON -DDEMOSAIC_PACK_GPL2_RPATH=../../LibRaw-demosaic-pack-GPL2 ' +\
'-DENABLE_DEMOSAIC_PACK_GPL3=ON -DDEMOSAIC_PACK_GPL3_RPATH=../../LibRaw-demosaic-pack-GPL3 '
if buildGPLCode else '') +\
zlib_flag +\
'-DCMAKE_INSTALL_PREFIX=install',
cmake + ' --build . --target install',
]
for cmd in cmds:
print(cmd)
code = os.system(cmd)
if code != 0:
sys.exit(code)
os.chdir(cwd)
# bundle runtime dlls
dll_runtime_libs = [('raw_r.dll', os.path.join(install_dir, 'bin'))]
if has_openmp_dll:
# Check if OpenMP was enabled in the CMake build, independent of the flag we supplied.
# If not, we don't have to bundle the DLL.
libraw_configh = os.path.join(install_dir, 'include', 'libraw', 'libraw_config.h')
match = '#define LIBRAW_USE_OPENMP 1'
has_openmp_support = match in open(libraw_configh).read()
if has_openmp_support:
dll_runtime_libs.append((os.path.basename(omp), os.path.dirname(omp)))
else:
print('WARNING: "#define LIBRAW_USE_OPENMP 1" not found even though OpenMP was enabled')
print('Will not bundle OpenMP runtime DLL')
for filename, folder in dll_runtime_libs:
src = os.path.join(folder, filename)
dest = 'rawpy/' + filename
print('copying', src, '->', dest)
shutil.copyfile(src, dest)
def mac_libraw_compile():
clone_submodules()
# configure and compile libraw
cwd = os.getcwd()
if not os.path.exists(cmake_build):
os.mkdir(cmake_build)
os.chdir(cmake_build)
install_name_dir = os.path.join(install_dir, 'lib')
cmds = ['cmake .. -DCMAKE_BUILD_TYPE=Release ' +\
'-DLIBRAW_PATH=' + libraw_dir + ' ' +\
'-DCMAKE_CXX_FLAGS="-DUSE_X3FTOOLS -DUSE_6BY9RPI" ' +\
'-DENABLE_OPENMP=OFF ' +\
'-DENABLE_EXAMPLES=OFF -DENABLE_RAWSPEED=OFF ' +\
('-DENABLE_DEMOSAIC_PACK_GPL2=ON -DDEMOSAIC_PACK_GPL2_RPATH=../../LibRaw-demosaic-pack-GPL2 ' +\
'-DENABLE_DEMOSAIC_PACK_GPL3=ON -DDEMOSAIC_PACK_GPL3_RPATH=../../LibRaw-demosaic-pack-GPL3 '
if buildGPLCode else '') +\
'-DCMAKE_INSTALL_PREFIX=install -DCMAKE_INSTALL_NAME_DIR=' + install_name_dir,
'cmake --build . --target install',
]
for cmd in cmds:
print(cmd)
code = os.system(cmd)
if code != 0:
sys.exit(code)
os.chdir(cwd)
package_data = {}
# evil hack, check cmd line for relevant commands
# custom cmdclasses didn't work out in this case
cmdline = ''.join(sys.argv[1:])
needsCompile = any(s in cmdline for s in ['install', 'bdist', 'build_ext', 'nosetests'])
if isWindows and needsCompile:
windows_libraw_compile()
package_data['rawpy'] = ['*.dll']
elif isMac and needsCompile:
mac_libraw_compile()
if any(s in cmdline for s in ['clean', 'sdist']):
# When running sdist after a previous run of bdist or build_ext
# then even with the 'clean' command the .egg-info folder stays.
# This folder contains SOURCES.txt which in turn is used by sdist
# to include package data files, but we don't want .dll's and .xml
# files in our source distribution. Therefore, to prevent accidents,
# we help a little...
egg_info = 'rawpy.egg-info'
print('removing', egg_info)
shutil.rmtree(egg_info, ignore_errors=True)
extensions = cythonize([Extension("rawpy._rawpy",
include_dirs=include_dirs,
sources=[os.path.join('rawpy', '_rawpy.pyx')],
libraries=libraries,
library_dirs=library_dirs,
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
)])
# make __version__ available (https://stackoverflow.com/a/16084844)
exec(open('rawpy/_version.py').read())
setup(
name = 'rawpy',
version = __version__,
description = 'RAW image processing for Python, a wrapper for libraw',
long_description = open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Maik Riechert',
author_email = 'maik.riechert@arcor.de',
url = 'https://github.com/letmaik/rawpy',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries',
],
packages = find_packages(),
ext_modules = extensions,
package_data = package_data,
install_requires=['numpy']
)