forked from pauldmccarthy/indexed_gzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
263 lines (217 loc) · 7.79 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
#!/usr/bin/env python
"""Setup script for indexed_gzip.
If an environment variable called `INDEXED_GZIP_TESTING` is defined, the
Cython modules are compiled with line-tracing enabled, via the Cython
`linetrace` directive, and the `CYTHON_TRACE_NOGIL` macro.
See
https://cython.readthedocs.io/en/latest/src/reference/compilation.html#compiler-directives
for more details.
The ZLIB_HOME environment variable can be used to compile and statically link
ZLIB into the indexed_gzip shared library file. It should point to a directory
which contains the ZLIB source code. If not provided, the ZLIB header and
library files are assumed to be provided by the system.
"""
import sys
import os
import glob
import functools as ft
import os.path as op
import shutil
from setuptools import setup
from setuptools import Extension
from setuptools import Command
# Custom 'clean' command
class Clean(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
base = op.dirname(__file__)
igzbase = op.join(base, 'indexed_gzip')
shutil.rmtree(op.join(base, 'build'),
ignore_errors=True)
shutil.rmtree(op.join(base, 'dist'),
ignore_errors=True)
shutil.rmtree(op.join(base, 'indexed_gzip.egg-info'),
ignore_errors=True)
shutil.rmtree(op.join(base, '.eggs'),
ignore_errors=True)
shutil.rmtree(op.join(base, '__pycache__'),
ignore_errors=True)
shutil.rmtree(op.join(igzbase, '__pycache__'),
ignore_errors=True)
shutil.rmtree(op.join(igzbase, 'tests', '__pycache__'),
ignore_errors=True)
files = [
'*.so',
'.coverage.*',
op.join(igzbase, 'indexed_gzip.c'),
op.join(igzbase, '*.pyc'),
op.join(igzbase, '*.so'),
op.join(igzbase, 'tests', '*.so'),
op.join(igzbase, 'tests', '*.pyc'),
op.join(igzbase, 'tests', 'ctest_zran.c'),
op.join(igzbase, 'tests', 'ctest_indexed_gzip.c')]
for f in files:
for g in glob.glob(f):
try: os.remove(g)
except OSError: pass
# Platform information
python2 = sys.version_info[0] == 2
noc99 = python2 or (sys.version_info[0] == 3 and sys.version_info[1] <= 4)
windows = sys.platform.startswith("win")
testing = 'INDEXED_GZIP_TESTING' in os.environ
# compile ZLIB source?
ZLIB_HOME = os.environ.get("ZLIB_HOME", None)
# Load README description
readme = op.join(op.dirname(__file__), 'README.md')
if python2:
openreadme = ft.partial(open, readme, 'rt')
else:
openreadme = ft.partial(open, readme, 'rt', encoding='utf-8')
with openreadme() as f:
readme = f.read().strip()
# If cython is present, we'll compile
# the pyx files from scratch. Otherwise,
# we'll compile the pre-generated c
# files (which are assumed to be present).
have_cython = True
have_numpy = True
try:
from Cython.Build import cythonize
except Exception:
have_cython = False
# We need numpy to compile the test modules
try:
import numpy as np
except Exception:
have_numpy = False
print('indexed_gzip setup')
print(' have_cython: {} (if True, modules will be cythonized, '
'otherwise pre-cythonized C files are assumed to be '
'present)'.format(have_cython))
print(' have_numpy: {} (if True, test modules will '
'be compiled)'.format(have_numpy))
print(' ZLIB_HOME: {} (if set, ZLIB sources are compiled into '
'the indexed_gzip extension)'.format(ZLIB_HOME))
print(' testing: {} (if True, code will be compiled with line '
'tracing enabled)'.format(testing))
# compile flags
include_dirs = ['indexed_gzip']
lib_dirs = []
libs = []
extra_srcs = []
extra_compile_args = []
compiler_directives = {'language_level' : 2}
define_macros = []
if ZLIB_HOME is not None:
include_dirs.append(ZLIB_HOME)
extra_srcs.extend(glob.glob(op.join(ZLIB_HOME, '*.c')))
# If numpy is present, we need
# to include the headers
if have_numpy:
include_dirs.append(np.get_include())
if windows:
if ZLIB_HOME is None:
libs.append('zlib')
# For stdint.h which is not included in the old Visual C
# compiler used for Python 2
if python2:
include_dirs.append('compat')
# Some C functions might not be present when compiling against
# older versions of python
if noc99:
extra_compile_args += ['-DNO_C99']
# linux / macOS
else:
# if ZLIB_HOME is set, statically link,
# rather than use system-provided zlib
if ZLIB_HOME is None:
libs.append('z')
extra_compile_args += ['-Wall', '-Wno-unused-function']
if testing:
compiler_directives['linetrace'] = True
define_macros += [('CYTHON_TRACE_NOGIL', '1')]
# Compile from cython files if
# possible, or compile from c.
if have_cython: pyx_ext = 'pyx'
else: pyx_ext = 'c'
# The indexed_gzip module
igzip_ext = Extension(
'indexed_gzip.indexed_gzip',
[op.join('indexed_gzip', 'indexed_gzip.{}'.format(pyx_ext)),
op.join('indexed_gzip', 'zran.c'),
op.join('indexed_gzip', 'zran_file_util.c')] + extra_srcs,
libraries=libs,
library_dirs=lib_dirs,
include_dirs=include_dirs,
extra_compile_args=extra_compile_args,
define_macros=define_macros)
# Optional test modules
test_exts = [
Extension(
'indexed_gzip.tests.ctest_indexed_gzip',
[op.join('indexed_gzip', 'tests',
'ctest_indexed_gzip.{}'.format(pyx_ext))],
libraries=libs,
library_dirs=lib_dirs,
include_dirs=include_dirs,
extra_compile_args=extra_compile_args,
define_macros=define_macros)
]
if not windows:
# Uses POSIX memmap API so won't work on Windows
test_exts.append(Extension(
'indexed_gzip.tests.ctest_zran',
[op.join('indexed_gzip', 'tests', 'ctest_zran.{}'.format(pyx_ext)),
op.join('indexed_gzip', 'zran.c'),
op.join('indexed_gzip', 'zran_file_util.c')] + extra_srcs,
libraries=libs,
library_dirs=lib_dirs,
include_dirs=include_dirs,
extra_compile_args=extra_compile_args,
define_macros=define_macros))
# If we have numpy, we can compile the tests
if have_numpy: extensions = [igzip_ext] + test_exts
else: extensions = [igzip_ext]
# Cythonize if we can
if have_cython:
extensions = cythonize(extensions, compiler_directives=compiler_directives)
# find the version number
def readVersion():
version = {}
initfile = op.join(op.dirname(__file__), 'indexed_gzip', '__init__.py')
with open(initfile, 'rt') as f:
for line in f:
if line.startswith('__version__'):
exec(line, version)
break
return version.get('__version__')
setup(
name='indexed_gzip',
packages=['indexed_gzip', 'indexed_gzip.tests'],
version=readVersion(),
author='Paul McCarthy',
author_email='pauldmccarthy@gmail.com',
description='Fast random access of gzip files in Python',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/pauldmccarthy/indexed_gzip',
license='zlib',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: zlib/libpng License',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: System :: Archiving :: Compression',
],
cmdclass={'clean' : Clean},
ext_modules=extensions,
tests_require=['pytest', 'numpy', 'nibabel', 'coverage', 'pytest-cov'],
test_suite='tests',
)