forked from Toblerity/Fiona
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
350 lines (300 loc) · 12.3 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
from distutils.command.sdist import sdist
from distutils import log
import itertools as it
import os
import shutil
import subprocess
import sys
from setuptools import setup
from setuptools.extension import Extension
# Ensure minimum version of Python is running
if sys.version_info[0:2] < (3, 6):
raise RuntimeError('Fiona requires Python>=3.6')
# Use Cython if available.
try:
from Cython.Build import cythonize
except ImportError:
cythonize = None
def check_output(cmd):
return subprocess.check_output(cmd).decode('utf')
def copy_data_tree(datadir, destdir):
try:
shutil.rmtree(destdir)
except OSError:
pass
shutil.copytree(datadir, destdir)
# Parse the version from the fiona module.
with open('fiona/__init__.py', 'r') as f:
for line in f:
if line.find("__version__") >= 0:
version = line.split("=")[1].strip().strip('"').strip("'")
break
# Fiona's auxiliary files are UTF-8 encoded
open_kwds = {'encoding': 'utf-8'}
with open('VERSION.txt', 'w', **open_kwds) as f:
f.write(version)
with open('README.rst', **open_kwds) as f:
readme = f.read()
with open('CREDITS.txt', **open_kwds) as f:
credits = f.read()
with open('CHANGES.txt', **open_kwds) as f:
changes = f.read()
# Set a flag for builds where the source directory is a repo checkout.
source_is_repo = os.path.exists("MANIFEST.in")
# Extend distutil's sdist command to generate C extension sources from
# the _shim extension modules for GDAL 1.x and 2.x.
class sdist_multi_gdal(sdist):
def run(self):
sources = {
"_shim1": "_shim",
"_shim2": "_shim",
"_shim22": "_shim",
"_shim3": "_shim"
}
for src_a, src_b in sources.items():
shutil.copy('fiona/{}.pyx'.format(src_a), 'fiona/{}.pyx'.format(src_b))
_ = check_output(['cython', '-v', '-f', 'fiona/{}.pyx'.format(src_b),
'-o', 'fiona/{}.c'.format(src_a)])
print(_)
sdist.run(self)
# Building Fiona requires options that can be obtained from GDAL's gdal-config
# program or can be specified using setup arguments. The latter override the
# former.
#
# A GDAL API version is strictly required. Without this the setup script
# cannot know whether to use the GDAL version 1 or 2 source files. The GDAL
# API version can be specified in 2 ways.
#
# 1. By the gdal-config program, optionally pointed to by GDAL_CONFIG
# 2. By a GDAL_VERSION environment variable. This overrides number 1.
include_dirs = []
library_dirs = []
libraries = []
extra_link_args = []
gdal_output = [None for i in range(4)]
gdalversion = None
language = None
if 'clean' not in sys.argv:
try:
gdal_config = os.environ.get('GDAL_CONFIG', 'gdal-config')
for i, flag in enumerate(
["--cflags", "--libs", "--datadir", "--version"]):
gdal_output[i] = check_output([gdal_config, flag]).strip()
for item in gdal_output[0].split():
if item.startswith("-I"):
include_dirs.extend(item[2:].split(":"))
for item in gdal_output[1].split():
if item.startswith("-L"):
library_dirs.extend(item[2:].split(":"))
elif item.startswith("-l"):
libraries.append(item[2:])
else:
# e.g. -framework GDAL
extra_link_args.append(item)
gdalversion = gdal_output[3]
if gdalversion:
log.info("GDAL API version obtained from gdal-config: %s",
gdalversion)
except Exception as e:
if os.name == "nt":
log.info("Building on Windows requires extra options to setup.py "
"to locate needed GDAL files.\nMore information is "
"available in the README.")
else:
log.warn("Failed to get options via gdal-config: %s", str(e))
# Get GDAL API version from environment variable.
if 'GDAL_VERSION' in os.environ:
gdalversion = os.environ['GDAL_VERSION']
log.info("GDAL API version obtained from environment: %s", gdalversion)
# Get GDAL API version from the command line if specified there.
if '--gdalversion' in sys.argv:
index = sys.argv.index('--gdalversion')
sys.argv.pop(index)
gdalversion = sys.argv.pop(index)
log.info("GDAL API version obtained from command line option: %s",
gdalversion)
if not gdalversion:
log.fatal("A GDAL API version must be specified. Provide a path "
"to gdal-config using a GDAL_CONFIG environment variable "
"or use a GDAL_VERSION environment variable.")
sys.exit(1)
if os.environ.get('PACKAGE_DATA'):
destdir = 'fiona/gdal_data'
if gdal_output[2]:
log.info("Copying gdal data from %s" % gdal_output[2])
copy_data_tree(gdal_output[2], destdir)
else:
# check to see if GDAL_DATA is defined
gdal_data = os.environ.get('GDAL_DATA', None)
if gdal_data:
log.info("Copying gdal data from %s" % gdal_data)
copy_data_tree(gdal_data, destdir)
# Conditionally copy PROJ.4 data.
projdatadir = os.environ.get('PROJ_LIB', '/usr/local/share/proj')
if os.path.exists(projdatadir):
log.info("Copying proj data from %s" % projdatadir)
copy_data_tree(projdatadir, 'fiona/proj_data')
if "--cython-language" in sys.argv:
index = sys.argv.index("--cython-language")
sys.argv.pop(index)
language = sys.argv.pop(index).lower()
gdal_version_parts = gdalversion.split('.')
gdal_major_version = int(gdal_version_parts[0])
gdal_minor_version = int(gdal_version_parts[1])
log.info("GDAL version major=%r minor=%r", gdal_major_version, gdal_minor_version)
ext_options = dict(
include_dirs=include_dirs,
library_dirs=library_dirs,
libraries=libraries,
extra_link_args=extra_link_args)
# Enable coverage for cython pyx files.
if os.environ.get('CYTHON_COVERAGE'):
from Cython.Compiler.Options import get_directive_defaults
directive_defaults = get_directive_defaults()
directive_defaults['linetrace'] = True
directive_defaults['binding'] = True
ext_options.update(dict(
define_macros=[("CYTHON_TRACE_NOGIL", "1")]))
# GDAL 2.3+ requires C++11
if language == "c++":
ext_options["language"] = "c++"
if sys.platform != "win32":
ext_options["extra_compile_args"] = ["-std=c++11"]
ext_options_cpp = ext_options.copy()
if sys.platform != "win32":
ext_options_cpp["extra_compile_args"] = ["-std=c++11"]
# Define the extension modules.
ext_modules = []
if source_is_repo and "clean" not in sys.argv:
# When building from a repo, Cython is required.
log.info("MANIFEST.in found, presume a repo, cythonizing...")
if not cythonize:
log.fatal("Cython.Build.cythonize not found. "
"Cython is required to build from a repo.")
sys.exit(1)
if gdalversion.startswith("1"):
shutil.copy('fiona/_shim1.pyx', 'fiona/_shim.pyx')
shutil.copy('fiona/_shim1.pxd', 'fiona/_shim.pxd')
elif gdal_major_version == 2:
if gdal_minor_version >= 2:
log.info("Building Fiona for gdal 2.2+: {0}".format(gdalversion))
shutil.copy('fiona/_shim22.pyx', 'fiona/_shim.pyx')
shutil.copy('fiona/_shim22.pxd', 'fiona/_shim.pxd')
else:
log.info("Building Fiona for gdal 2.0.x-2.1.x: {0}".format(gdalversion))
shutil.copy('fiona/_shim2.pyx', 'fiona/_shim.pyx')
shutil.copy('fiona/_shim2.pxd', 'fiona/_shim.pxd')
elif gdal_major_version == 3:
shutil.copy('fiona/_shim3.pyx', 'fiona/_shim.pyx')
shutil.copy('fiona/_shim3.pxd', 'fiona/_shim.pxd')
ext_modules = cythonize([
Extension('fiona._geometry', ['fiona/_geometry.pyx'], **ext_options),
Extension('fiona.schema', ['fiona/schema.pyx'], **ext_options),
Extension('fiona._transform', ['fiona/_transform.pyx'], **ext_options_cpp),
Extension('fiona._crs', ['fiona/_crs.pyx'], **ext_options),
Extension('fiona._env', ['fiona/_env.pyx'], **ext_options),
Extension('fiona._err', ['fiona/_err.pyx'], **ext_options),
Extension('fiona._shim', ['fiona/_shim.pyx'], **ext_options),
Extension('fiona.ogrext', ['fiona/ogrext.pyx'], **ext_options)
],
compiler_directives={"language_level": "3"}
)
# If there's no manifest template, as in an sdist, we just specify .c files.
elif "clean" not in sys.argv:
ext_modules = [
Extension('fiona.schema', ['fiona/schema.c'], **ext_options),
Extension('fiona._transform', ['fiona/_transform.cpp'], **ext_options_cpp),
Extension('fiona._geometry', ['fiona/_geometry.c'], **ext_options),
Extension('fiona._crs', ['fiona/_crs.c'], **ext_options),
Extension('fiona._env', ['fiona/_env.c'], **ext_options),
Extension('fiona._err', ['fiona/_err.c'], **ext_options),
Extension('fiona.ogrext', ['fiona/ogrext.c'], **ext_options),
]
if gdal_major_version == 1:
log.info("Building Fiona for gdal 1.x: {0}".format(gdalversion))
ext_modules.append(
Extension('fiona._shim', ['fiona/_shim1.c'], **ext_options))
elif gdal_major_version == 2:
if gdal_minor_version >= 2:
log.info("Building Fiona for gdal 2.2+: {0}".format(gdalversion))
ext_modules.append(
Extension('fiona._shim', ['fiona/_shim22.c'], **ext_options))
else:
log.info("Building Fiona for gdal 2.0.x-2.1.x: {0}".format(gdalversion))
ext_modules.append(
Extension('fiona._shim', ['fiona/_shim2.c'], **ext_options))
elif gdal_major_version == 3:
log.info("Building Fiona for gdal >= 3.0.x: {0}".format(gdalversion))
ext_modules.append(
Extension('fiona._shim', ['fiona/_shim3.c'], **ext_options))
requirements = [
'attrs>=17',
'certifi',
'click>=4.0',
'cligj>=0.5',
'click-plugins>=1.0',
'six>=1.7',
'munch',
"setuptools",
]
extras_require = {
'calc': ['shapely'],
's3': ['boto3>=1.2.4'],
'test': ['pytest>=3', 'pytest-cov', 'boto3>=1.2.4', 'pytz']
}
extras_require['all'] = list(set(it.chain(*extras_require.values())))
setup_args = dict(
cmdclass={'sdist': sdist_multi_gdal},
metadata_version='1.2',
name='Fiona',
version=version,
python_requires='>=3.6',
requires_external='GDAL (>=2.4)',
description="Fiona reads and writes spatial data files",
license='BSD',
keywords='gis vector feature data',
author='Sean Gillies',
author_email='[email protected]',
maintainer='Sean Gillies',
maintainer_email='[email protected]',
url='https://github.com/Toblerity/Fiona',
long_description=readme + "\n" + changes + "\n" + credits,
package_dir={'': '.'},
packages=['fiona', 'fiona.fio'],
entry_points='''
[console_scripts]
fio=fiona.fio.main:main_group
[fiona.fio_commands]
bounds=fiona.fio.bounds:bounds
calc=fiona.fio.calc:calc
cat=fiona.fio.cat:cat
collect=fiona.fio.collect:collect
distrib=fiona.fio.distrib:distrib
dump=fiona.fio.dump:dump
env=fiona.fio.env:env
filter=fiona.fio.filter:filter
info=fiona.fio.info:info
insp=fiona.fio.insp:insp
load=fiona.fio.load:load
ls=fiona.fio.ls:ls
rm=fiona.fio.rm:rm
''',
install_requires=requirements,
extras_require=extras_require,
ext_modules=ext_modules,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: GIS'])
if os.environ.get('PACKAGE_DATA'):
setup_args['package_data'] = {'fiona': ['gdal_data/*', 'proj_data/*', '.libs/*', '.libs/licenses/*']}
setup(**setup_args)