-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·232 lines (196 loc) · 7.41 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
#!/usr/bin/env python
from __future__ import print_function
try:
# If possible, use setuptools
from setuptools import setup
from setuptools.extension import Extension
from setuptools.command.build_ext import build_ext as distutils_build_ext
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from distutils.command.build_ext import build_ext as distutils_build_ext
from distutils.cmd import Command
from distutils.errors import CCompilerError, DistutilsExecError, \
DistutilsPlatformError
from distutils.sysconfig import get_config_var
import errno
import glob
import os
import platform
import shutil
import subprocess
import sys
# Get the version from the shapely module
version = None
with open('shapely/__init__.py', 'r') as fp:
for line in fp:
if "__version__" in line:
exec(line.replace('_', ''))
break
if version is None:
raise ValueError("Could not determine Shapely's version")
# Handle UTF-8 encoding of certain text files.
open_kwds = {}
if sys.version_info >= (3,):
open_kwds['encoding'] = 'utf-8'
with open('VERSION.txt', 'w', **open_kwds) as fp:
fp.write(version)
with open('README.rst', 'r', **open_kwds) as fp:
readme = fp.read()
with open('CREDITS.txt', 'r', **open_kwds) as fp:
credits = fp.read()
with open('CHANGES.txt', 'r', **open_kwds) as fp:
changes = fp.read()
long_description = readme + '\n\n' + credits + '\n\n' + changes
setup_args = dict(
name = 'Shapely',
version = version,
requires = ['Python (>=2.6)', 'libgeos_c (>=3.1)'],
description = 'Geometric objects, predicates, and operations',
license = 'BSD',
keywords = 'geometry topology gis',
author = 'Sean Gillies',
author_email = '[email protected]',
maintainer = 'Sean Gillies',
maintainer_email = '[email protected]',
url = 'https://github.com/Toblerity/Shapely',
long_description = long_description,
packages = [
'shapely',
'shapely.geometry',
'shapely.algorithms',
'shapely.examples',
'shapely.speedups',
'shapely.vectorized',
],
cmdclass = {},
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 :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
],
data_files = [('shapely', ['shapely/_geos.pxi'])]
)
# Add DLLs for Windows
if sys.platform == 'win32':
try:
os.mkdir('shapely/DLLs')
except OSError as ex:
if ex.errno != errno.EEXIST:
raise
if '(AMD64)' in sys.version:
for dll in glob.glob('DLLs_AMD64_VC9/*.dll'):
shutil.copy(dll, 'shapely/DLLs')
elif sys.version_info[0:2] == (2, 5):
for dll in glob.glob('DLLs_x86_VC7/*.dll'):
shutil.copy(dll, 'shapely/DLLs')
else:
for dll in glob.glob('DLLs_x86_VC9/*.dll'):
shutil.copy(dll, 'shapely/DLLs')
setup_args.update(
package_data={'shapely': ['shapely/DLLs/*.dll']},
include_package_data=True,
)
# Optional compilation of speedups
# setuptools stuff from Bob Ippolito's simplejson project
if sys.platform == 'win32' and sys.version_info > (2, 6):
# 2.6's distutils.msvc9compiler can raise an IOError when failing to
# find the compiler
ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError,
IOError)
else:
ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
class BuildFailed(Exception):
pass
def construct_build_ext(build_ext):
class WrappedBuildExt(build_ext):
# This class allows C extension building to fail.
def run(self):
try:
build_ext.run(self)
except DistutilsPlatformError as x:
raise BuildFailed(x)
def build_extension(self, ext):
try:
build_ext.build_extension(self, ext)
except ext_errors as x:
raise BuildFailed(x)
return WrappedBuildExt
if (hasattr(platform, 'python_implementation')
and platform.python_implementation() == 'PyPy'):
# python_implementation is only available since 2.6
ext_modules = []
libraries = []
elif sys.platform == 'win32':
libraries = ['geos']
else:
libraries = ['geos_c']
if os.path.exists("MANIFEST.in"):
pyx_file = "shapely/speedups/_speedups.pyx"
c_file = "shapely/speedups/_speedups.c"
force_cython = False
if 'sdist' in sys.argv:
force_cython = True
try:
if (force_cython or not os.path.exists(c_file)
or os.path.getmtime(pyx_file) > os.path.getmtime(c_file)):
print("Updating C extension with Cython.", file=sys.stderr)
subprocess.check_call(["cython", "shapely/speedups/_speedups.pyx"])
except (subprocess.CalledProcessError, OSError):
print("Warning: Could not (re)create C extension with Cython.",
file=sys.stderr)
if force_cython:
raise
if not os.path.exists("shapely/speedups/_speedups.c"):
print("Warning: speedup extension not found", file=sys.stderr)
ext_modules = [
Extension(
"shapely.speedups._speedups",
["shapely/speedups/_speedups.c"],
libraries=libraries,
include_dirs=[get_config_var('INCLUDEDIR')],),
]
cmd_classes = setup_args.setdefault('cmdclass', {})
try:
import numpy as np
from Cython.Distutils import build_ext as cython_build_ext
from distutils.extension import Extension as DistutilsExtension
if 'build_ext' in cmd_classes:
raise ValueError('We need to put the Cython build_ext in '
'cmd_classes, but it is already defined.')
cmd_classes['build_ext'] = cython_build_ext
ext_modules.append(DistutilsExtension("shapely.vectorized._vectorized",
sources=["shapely/vectorized/_vectorized.pyx"],
libraries=libraries + [np.get_include()],
include_dirs=[get_config_var('INCLUDEDIR'),
np.get_include()],
))
except ImportError:
print("Numpy or Cython not available, shapely.vectorized submodule not "
"being built.")
try:
# try building with speedups
existing_build_ext = setup_args['cmdclass'].get('build_ext', distutils_build_ext)
setup_args['cmdclass']['build_ext'] = construct_build_ext(existing_build_ext)
setup(
ext_modules=ext_modules,
**setup_args
)
except BuildFailed as ex:
BUILD_EXT_WARNING = "Warning: The C extension could not be compiled, " \
"speedups are not enabled."
print(ex)
print(BUILD_EXT_WARNING)
print("Failure information, if any, is above.")
print("I'm retrying the build without the C extension now.")
if 'build_ext' in cmd_classes:
del cmd_classes['build_ext']
setup(**setup_args)
print(BUILD_EXT_WARNING)
print("Plain-Python installation succeeded.")