blob: 5d41cf6e23403cb8c09162ca2d5f663e88387419 [file] [log] [blame]
Craig Tiller6169d5f2016-03-31 07:46:18 -07001# Copyright 2015, Google Inc.
Nathaniel Manistab68f3d12015-01-23 21:32:47 +00002# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7#
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above
11# copyright notice, this list of conditions and the following disclaimer
12# in the documentation and/or other materials provided with the
13# distribution.
14# * Neither the name of Google Inc. nor the names of its
15# contributors may be used to endorse or promote products derived from
16# this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +000030"""A setup module for the GRPC Python package."""
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000031
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070032import os
Masood Malekghassemid65632a2015-07-27 14:30:09 -070033import os.path
Masood Malekghassemi586e3832016-06-03 19:29:12 -070034import platform
Ken Paysonfe754b42016-06-23 12:32:07 -070035import shlex
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -080036import shutil
Alexander Staubo8eac91e2015-04-06 12:06:22 -040037import sys
Ken Payson1efb6012016-06-08 13:06:44 -070038import sysconfig
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000039
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070040from distutils import core as _core
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070041from distutils import extension as _extension
Ken Payson1efb6012016-06-08 13:06:44 -070042import pkg_resources
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070043import setuptools
Masood Malekghassemib7e7b3f2015-12-17 00:16:49 -080044from setuptools.command import egg_info
45
46# Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
47egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070048
Leifur Halldor Asgeirsson38a3d7a2016-03-01 10:00:08 -050049PY3 = sys.version_info.major == 3
Masood Malekghassemie540b572016-01-14 15:00:34 -080050PYTHON_STEM = './src/python/grpcio'
51CORE_INCLUDE = ('./include', '.',)
Masood Malekghassemi387e1162016-01-05 10:16:12 -080052BORINGSSL_INCLUDE = ('./third_party/boringssl/include',)
Masood Malekghassemi0cc27922016-01-22 16:32:41 -080053ZLIB_INCLUDE = ('./third_party/zlib',)
Masood Malekghassemi116982e2015-12-11 15:53:38 -080054
Masood Malekghassemid65632a2015-07-27 14:30:09 -070055# Ensure we're in the proper directory whether or not we're being used by pip.
56os.chdir(os.path.dirname(os.path.abspath(__file__)))
Masood Malekghassemi58a1dc22016-01-21 14:23:55 -080057sys.path.insert(0, os.path.abspath(PYTHON_STEM))
Masood Malekghassemid65632a2015-07-27 14:30:09 -070058
Masood Malekghassemi116982e2015-12-11 15:53:38 -080059# Break import-style to ensure we can actually find our in-repo dependencies.
Masood Malekghassemi06c857c2016-06-13 20:53:02 -070060import _unixccompiler_patch
Masood Malekghassemid65632a2015-07-27 14:30:09 -070061import commands
Masood Malekghassemi116982e2015-12-11 15:53:38 -080062import grpc_core_dependencies
Craig Tillerf008f062016-02-08 12:48:03 -080063import grpc_version
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070064
Masood Malekghassemic3e3ae52016-07-11 15:10:02 -070065if 'win32' in sys.platform:
66 _unixccompiler_patch.monkeypatch_unix_compiler()
Masood Malekghassemi586e3832016-06-03 19:29:12 -070067
68
Masood Malekghassemidf97aec2016-01-11 16:19:14 -080069LICENSE = '3-clause BSD'
70
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070071# Environment variable to determine whether or not the Cython extension should
72# *use* Cython or use the generated C files. Note that this requires the C files
Masood Malekghassemif17f0f62016-07-08 12:07:49 -070073# to have been generated by building first *with* Cython support. Even if this
74# is set to false, if the script detects that the generated `.c` file isn't
75# present, then it will still attempt to use Cython.
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070076BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070077
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070078# Environment variable to determine whether or not to enable coverage analysis
79# in Cython modules.
80ENABLE_CYTHON_TRACING = os.environ.get(
81 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False)
82
Masood Malekghassemi586e3832016-06-03 19:29:12 -070083# There are some situations (like on Windows) where CC, CFLAGS, and LDFLAGS are
84# entirely ignored/dropped/forgotten by distutils and its Cygwin/MinGW support.
85# We use these environment variables to thus get around that without locking
86# ourselves in w.r.t. the multitude of operating systems this ought to build on.
Masood Malekghassemid66be0b2016-07-07 11:24:39 -070087# We can also use these variables as a way to inject environment-specific
88# compiler/linker flags. We assume GCC-like compilers and/or MinGW as a
89# reasonable default.
90EXTRA_ENV_COMPILE_ARGS = os.environ.get('GRPC_PYTHON_CFLAGS', None)
91EXTRA_ENV_LINK_ARGS = os.environ.get('GRPC_PYTHON_LDFLAGS', None)
92if EXTRA_ENV_COMPILE_ARGS is None:
93 EXTRA_ENV_COMPILE_ARGS = '-fno-wrapv'
94 if 'win32' in sys.platform:
95 # We use define flags here and don't directly add to DEFINE_MACROS below to
96 # ensure that the expert user/builder has a way of turning it off (via the
97 # envvars) without adding yet more GRPC-specific envvars.
98 # See https://sourceforge.net/p/mingw-w64/bugs/363/
99 if '32' in platform.architecture()[0]:
100 EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime32 -D_timeb=__timeb32 -D_ftime_s=_ftime32_s'
101 else:
102 EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime64 -D_timeb=__timeb64'
103 elif "linux" in sys.platform or "darwin" in sys.platform:
104 EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden'
105if EXTRA_ENV_LINK_ARGS is None:
106 EXTRA_ENV_LINK_ARGS = '-lpthread'
107 if 'win32' in sys.platform:
108 # TODO(atash) check if this is actually safe to just import and call on
109 # non-Windows (to avoid breaking import style)
110 from distutils.cygwinccompiler import get_msvcr
111 msvcr = get_msvcr()[0]
112 # TODO(atash) sift through the GCC specs to see if libstdc++ can have any
113 # influence on the linkage outcome on MinGW for non-C++ programs.
114 EXTRA_ENV_LINK_ARGS += (
115 ' -static-libgcc -static-libstdc++ -mcrtdll={msvcr} '
116 '-static'.format(msvcr=msvcr))
117 elif "linux" in sys.platform:
118 EXTRA_ENV_LINK_ARGS += ' -Wl,-wrap,memcpy'
119EXTRA_COMPILE_ARGS = shlex.split(EXTRA_ENV_COMPILE_ARGS)
120EXTRA_LINK_ARGS = shlex.split(EXTRA_ENV_LINK_ARGS)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700121
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700122CYTHON_EXTENSION_PACKAGE_NAMES = ()
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700123
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800124CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700125
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800126CYTHON_HELPER_C_FILES = (
127 os.path.join(PYTHON_STEM, 'grpc/_cython/loader.c'),
128 os.path.join(PYTHON_STEM, 'grpc/_cython/imports.generated.c'),
129)
130
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700131CORE_C_FILES = tuple(grpc_core_dependencies.CORE_SOURCE_FILES)
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800132
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800133EXTENSION_INCLUDE_DIRECTORIES = (
Masood Malekghassemi0cc27922016-01-22 16:32:41 -0800134 (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +0000135
Masood Malekghassemi10509a22016-02-03 13:32:22 -0800136EXTENSION_LIBRARIES = ()
Masood Malekghassemic9c53ee2016-02-03 10:30:23 -0800137if "linux" in sys.platform:
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800138 EXTENSION_LIBRARIES += ('rt',)
Masood Malekghassemi10509a22016-02-03 13:32:22 -0800139if not "win32" in sys.platform:
140 EXTENSION_LIBRARIES += ('m',)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700141if "win32" in sys.platform:
142 EXTENSION_LIBRARIES += ('ws2_32',)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +0000143
Craig Tiller71ea4a12016-02-04 15:06:41 -0800144DEFINE_MACROS = (('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600), ('GPR_BACKWARDS_COMPATIBILITY_MODE', 1),)
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700145if "win32" in sys.platform:
146 DEFINE_MACROS += (('OPENSSL_WINDOWS', 1), ('WIN32_LEAN_AND_MEAN', 1),)
147 if '64bit' in platform.architecture()[0]:
148 DEFINE_MACROS += (('MS_WIN64', 1),)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -0700149
Masood Malekghassemi586e3832016-06-03 19:29:12 -0700150LDFLAGS = tuple(EXTRA_LINK_ARGS)
151CFLAGS = tuple(EXTRA_COMPILE_ARGS)
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800152if "linux" in sys.platform or "darwin" in sys.platform:
Leifur Halldor Asgeirsson38a3d7a2016-03-01 10:00:08 -0500153 pymodinit_type = 'PyObject*' if PY3 else 'void'
Leifur Halldor Asgeirsson38a3d7a2016-03-01 10:00:08 -0500154 pymodinit = '__attribute__((visibility ("default"))) {}'.format(pymodinit_type)
155 DEFINE_MACROS += (('PyMODINIT_FUNC', pymodinit),)
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800156
157
Ken Payson1efb6012016-06-08 13:06:44 -0700158# By default, Python3 distutils enforces compatibility of
159# c plugins (.so files) with the OSX version Python3 was built with.
160# For Python3.4, this is OSX 10.6, but we need Thread Local Support (__thread)
161if 'darwin' in sys.platform and PY3:
162 mac_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET')
163 if mac_target and (pkg_resources.parse_version(mac_target) <
164 pkg_resources.parse_version('10.7.0')):
165 os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.7'
166
Masood Malekghassemifd9cc102016-07-21 14:20:43 -0700167def cython_extensions_and_necessity():
168 cython_module_files = [os.path.join(PYTHON_STEM,
169 name.replace('.', '/') + '.pyx')
170 for name in CYTHON_EXTENSION_MODULE_NAMES]
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700171 extensions = [
172 _extension.Extension(
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800173 name=module_name,
Masood Malekghassemifd9cc102016-07-21 14:20:43 -0700174 sources=[module_file] + list(CYTHON_HELPER_C_FILES) + list(CORE_C_FILES),
175 include_dirs=list(EXTENSION_INCLUDE_DIRECTORIES),
176 libraries=list(EXTENSION_LIBRARIES),
177 define_macros=list(DEFINE_MACROS),
Craig Tillera7f3e052016-02-05 15:02:39 -0800178 extra_compile_args=list(CFLAGS),
179 extra_link_args=list(LDFLAGS),
Masood Malekghassemifd9cc102016-07-21 14:20:43 -0700180 ) for (module_name, module_file) in zip(list(CYTHON_EXTENSION_MODULE_NAMES), cython_module_files)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700181 ]
Masood Malekghassemifd9cc102016-07-21 14:20:43 -0700182 need_cython = BUILD_WITH_CYTHON
183 if not BUILD_WITH_CYTHON:
184 need_cython = need_cython or not commands.check_and_update_cythonization(extensions)
185 return commands.try_cythonize(extensions, linetracing=ENABLE_CYTHON_TRACING, mandatory=BUILD_WITH_CYTHON), need_cython
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700186
Masood Malekghassemifd9cc102016-07-21 14:20:43 -0700187CYTHON_EXTENSION_MODULES, need_cython = cython_extensions_and_necessity()
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700188
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700189PACKAGE_DIRECTORIES = {
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800190 '': PYTHON_STEM,
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +0000191}
192
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700193INSTALL_REQUIRES = (
Ken Payson2b7fae02016-06-28 17:20:37 -0700194 'six>=1.5.2',
Nathaniel Manistaa1880222015-09-10 22:16:04 +0000195 'enum34>=1.0.4',
196 'futures>=2.2.0',
Masood Malekghassemiad32ff42016-01-21 15:15:38 -0800197 # TODO(atash): eventually split the grpcio package into a metapackage
198 # depending on protobuf and the runtime component (independent of protobuf)
199 'protobuf>=3.0.0a3',
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700200)
201
Ken Payson2b7fae02016-06-28 17:20:37 -0700202SETUP_REQUIRES = INSTALL_REQUIRES + (
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700203 'sphinx>=1.3',
Ken Payson2b7fae02016-06-28 17:20:37 -0700204 'sphinx_rtd_theme>=0.1.8',
205 'six>=1.10',
206)
Masood Malekghassemifd9cc102016-07-21 14:20:43 -0700207if BUILD_WITH_CYTHON:
208 sys.stderr.write(
209 "You requested a Cython build via GRPC_PYTHON_BUILD_WITH_CYTHON, "
210 "but do not have Cython installed. We won't stop you from using "
211 "other commands, but the extension files will fail to build.\n")
212elif need_cython:
213 sys.stderr.write(
214 'We could not find Cython. Setup may take 10-20 minutes.\n')
215 SETUP_REQUIRES += ('cython>=0.23',)
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700216
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700217COMMAND_CLASS = {
Masood Malekghassemi791cc312015-07-27 14:22:33 -0700218 'doc': commands.SphinxDocumentation,
Masood Malekghassemi5c147632015-07-31 14:08:19 -0700219 'build_project_metadata': commands.BuildProjectMetadata,
220 'build_py': commands.BuildPy,
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800221 'build_ext': commands.BuildExt,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700222 'gather': commands.Gather,
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700223}
224
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800225# Ensure that package data is copied over before any commands have been run:
Nathaniel Manistafa6cad72016-02-05 21:26:54 +0000226credentials_dir = os.path.join(PYTHON_STEM, 'grpc/_cython/_credentials')
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800227try:
228 os.mkdir(credentials_dir)
229except OSError:
230 pass
231shutil.copyfile('etc/roots.pem', os.path.join(credentials_dir, 'roots.pem'))
232
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800233PACKAGE_DATA = {
Masood Malekghassemif7474092016-02-12 12:04:53 -0800234 # Binaries that may or may not be present in the final installation, but are
235 # mentioned here for completeness.
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800236 'grpc._cython': [
Nathaniel Manistafa6cad72016-02-05 21:26:54 +0000237 '_credentials/roots.pem',
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800238 '_windows/grpc_c.32.python',
239 '_windows/grpc_c.64.python',
240 ],
241}
Masood Malekghassemi1ff429d2016-06-02 16:39:20 -0700242PACKAGES = setuptools.find_packages(PYTHON_STEM)
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700243
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700244setuptools.setup(
245 name='grpcio',
246 version=grpc_version.VERSION,
247 license=LICENSE,
248 ext_modules=CYTHON_EXTENSION_MODULES,
249 packages=list(PACKAGES),
250 package_dir=PACKAGE_DIRECTORIES,
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700251 package_data=PACKAGE_DATA,
252 install_requires=INSTALL_REQUIRES,
253 setup_requires=SETUP_REQUIRES,
254 cmdclass=COMMAND_CLASS,
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700255)