blob: d9c46ba77a1d14588f43758302ece38582c22cd8 [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
Ken Paysonfe754b42016-06-23 12:32:07 -070034import shlex
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -080035import shutil
Alexander Staubo8eac91e2015-04-06 12:06:22 -040036import sys
Ken Payson1efb6012016-06-08 13:06:44 -070037import sysconfig
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000038
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070039from distutils import core as _core
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070040from distutils import extension as _extension
Ken Payson1efb6012016-06-08 13:06:44 -070041import pkg_resources
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070042import setuptools
Masood Malekghassemib7e7b3f2015-12-17 00:16:49 -080043from setuptools.command import egg_info
44
45# Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
46egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070047
Leifur Halldor Asgeirsson38a3d7a2016-03-01 10:00:08 -050048PY3 = sys.version_info.major == 3
Masood Malekghassemie540b572016-01-14 15:00:34 -080049PYTHON_STEM = './src/python/grpcio'
50CORE_INCLUDE = ('./include', '.',)
Masood Malekghassemi387e1162016-01-05 10:16:12 -080051BORINGSSL_INCLUDE = ('./third_party/boringssl/include',)
Masood Malekghassemi0cc27922016-01-22 16:32:41 -080052ZLIB_INCLUDE = ('./third_party/zlib',)
Masood Malekghassemi116982e2015-12-11 15:53:38 -080053
Masood Malekghassemid65632a2015-07-27 14:30:09 -070054# Ensure we're in the proper directory whether or not we're being used by pip.
55os.chdir(os.path.dirname(os.path.abspath(__file__)))
Masood Malekghassemi58a1dc22016-01-21 14:23:55 -080056sys.path.insert(0, os.path.abspath(PYTHON_STEM))
Masood Malekghassemid65632a2015-07-27 14:30:09 -070057
Masood Malekghassemi116982e2015-12-11 15:53:38 -080058# Break import-style to ensure we can actually find our in-repo dependencies.
Masood Malekghassemid65632a2015-07-27 14:30:09 -070059import commands
Masood Malekghassemi116982e2015-12-11 15:53:38 -080060import grpc_core_dependencies
Craig Tillerf008f062016-02-08 12:48:03 -080061import grpc_version
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070062
Masood Malekghassemidf97aec2016-01-11 16:19:14 -080063LICENSE = '3-clause BSD'
64
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070065# Environment variable to determine whether or not the Cython extension should
66# *use* Cython or use the generated C files. Note that this requires the C files
67# to have been generated by building first *with* Cython support.
68BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070069
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070070# Environment variable to determine whether or not to enable coverage analysis
71# in Cython modules.
72ENABLE_CYTHON_TRACING = os.environ.get(
73 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False)
74
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070075CYTHON_EXTENSION_PACKAGE_NAMES = ()
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070076
Masood Malekghassemi116982e2015-12-11 15:53:38 -080077CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070078
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -080079CYTHON_HELPER_C_FILES = (
80 os.path.join(PYTHON_STEM, 'grpc/_cython/loader.c'),
81 os.path.join(PYTHON_STEM, 'grpc/_cython/imports.generated.c'),
82)
83
84CORE_C_FILES = ()
85if not "win32" in sys.platform:
Masood Malekghassemi10509a22016-02-03 13:32:22 -080086 CORE_C_FILES += tuple(grpc_core_dependencies.CORE_SOURCE_FILES)
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -080087
Masood Malekghassemi387e1162016-01-05 10:16:12 -080088EXTENSION_INCLUDE_DIRECTORIES = (
Masood Malekghassemi0cc27922016-01-22 16:32:41 -080089 (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000090
Masood Malekghassemi10509a22016-02-03 13:32:22 -080091EXTENSION_LIBRARIES = ()
Masood Malekghassemic9c53ee2016-02-03 10:30:23 -080092if "linux" in sys.platform:
Craig Tiller4bef7ce2016-02-02 08:38:43 -080093 EXTENSION_LIBRARIES += ('rt',)
Masood Malekghassemi10509a22016-02-03 13:32:22 -080094if not "win32" in sys.platform:
95 EXTENSION_LIBRARIES += ('m',)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000096
Craig Tiller71ea4a12016-02-04 15:06:41 -080097DEFINE_MACROS = (('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600), ('GPR_BACKWARDS_COMPATIBILITY_MODE', 1),)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070098
Ken Paysonfe754b42016-06-23 12:32:07 -070099LDFLAGS = shlex.split(os.environ.get('GRPC_PYTHON_LDFLAGS', ''))
100CFLAGS = shlex.split(os.environ.get('GRPC_PYTHON_CFLAGS', ''))
101
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800102if "linux" in sys.platform:
103 LDFLAGS += ('-Wl,-wrap,memcpy',)
104if "linux" in sys.platform or "darwin" in sys.platform:
105 CFLAGS += ('-fvisibility=hidden',)
Leifur Halldor Asgeirsson38a3d7a2016-03-01 10:00:08 -0500106
107 pymodinit_type = 'PyObject*' if PY3 else 'void'
108
109 pymodinit = '__attribute__((visibility ("default"))) {}'.format(pymodinit_type)
110 DEFINE_MACROS += (('PyMODINIT_FUNC', pymodinit),)
Craig Tiller4bef7ce2016-02-02 08:38:43 -0800111
112
Ken Payson1efb6012016-06-08 13:06:44 -0700113# By default, Python3 distutils enforces compatibility of
114# c plugins (.so files) with the OSX version Python3 was built with.
115# For Python3.4, this is OSX 10.6, but we need Thread Local Support (__thread)
116if 'darwin' in sys.platform and PY3:
117 mac_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET')
118 if mac_target and (pkg_resources.parse_version(mac_target) <
119 pkg_resources.parse_version('10.7.0')):
120 os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.7'
121
122
Leifur Halldor Asgeirsson554c7dd2016-02-18 17:24:05 -0500123def cython_extensions(module_names, extra_sources, include_dirs,
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800124 libraries, define_macros, build_with_cython=False):
Masood Malekghassemi68a94c82016-03-09 11:45:07 -0800125 # Set compiler directives linetrace argument only if we care about tracing;
126 # this is due to Cython having different behavior between linetrace being
127 # False and linetrace being unset. See issue #5689.
128 cython_compiler_directives = {}
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800129 if ENABLE_CYTHON_TRACING:
130 define_macros = define_macros + [('CYTHON_TRACE_NOGIL', 1)]
Masood Malekghassemi68a94c82016-03-09 11:45:07 -0800131 cython_compiler_directives['linetrace'] = True
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700132 file_extension = 'pyx' if build_with_cython else 'c'
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800133 module_files = [os.path.join(PYTHON_STEM,
134 name.replace('.', '/') + '.' + file_extension)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700135 for name in module_names]
136 extensions = [
137 _extension.Extension(
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800138 name=module_name,
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800139 sources=[module_file] + extra_sources,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700140 include_dirs=include_dirs, libraries=libraries,
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800141 define_macros=define_macros,
Craig Tillera7f3e052016-02-05 15:02:39 -0800142 extra_compile_args=list(CFLAGS),
143 extra_link_args=list(LDFLAGS),
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700144 ) for (module_name, module_file) in zip(module_names, module_files)
145 ]
146 if build_with_cython:
147 import Cython.Build
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700148 return Cython.Build.cythonize(
149 extensions,
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800150 include_path=include_dirs,
Masood Malekghassemi68a94c82016-03-09 11:45:07 -0800151 compiler_directives=cython_compiler_directives)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700152 else:
153 return extensions
154
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700155CYTHON_EXTENSION_MODULES = cython_extensions(
Leifur Halldor Asgeirsson554c7dd2016-02-18 17:24:05 -0500156 list(CYTHON_EXTENSION_MODULE_NAMES),
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800157 list(CYTHON_HELPER_C_FILES) + list(CORE_C_FILES),
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700158 list(EXTENSION_INCLUDE_DIRECTORIES), list(EXTENSION_LIBRARIES),
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800159 list(DEFINE_MACROS), bool(BUILD_WITH_CYTHON))
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700160
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700161PACKAGE_DIRECTORIES = {
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800162 '': PYTHON_STEM,
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +0000163}
164
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700165INSTALL_REQUIRES = (
Ken Payson2b7fae02016-06-28 17:20:37 -0700166 'six>=1.5.2',
Nathaniel Manistaa1880222015-09-10 22:16:04 +0000167 'enum34>=1.0.4',
168 'futures>=2.2.0',
Masood Malekghassemiad32ff42016-01-21 15:15:38 -0800169 # TODO(atash): eventually split the grpcio package into a metapackage
170 # depending on protobuf and the runtime component (independent of protobuf)
171 'protobuf>=3.0.0a3',
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700172)
173
Ken Payson2b7fae02016-06-28 17:20:37 -0700174SETUP_REQUIRES = INSTALL_REQUIRES + (
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700175 'sphinx>=1.3',
Ken Payson2b7fae02016-06-28 17:20:37 -0700176 'sphinx_rtd_theme>=0.1.8',
177 'six>=1.10',
178)
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700179
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700180COMMAND_CLASS = {
Masood Malekghassemi791cc312015-07-27 14:22:33 -0700181 'doc': commands.SphinxDocumentation,
Masood Malekghassemi5c147632015-07-31 14:08:19 -0700182 'build_project_metadata': commands.BuildProjectMetadata,
183 'build_py': commands.BuildPy,
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800184 'build_ext': commands.BuildExt,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700185 'gather': commands.Gather,
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700186}
187
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800188# Ensure that package data is copied over before any commands have been run:
Nathaniel Manistafa6cad72016-02-05 21:26:54 +0000189credentials_dir = os.path.join(PYTHON_STEM, 'grpc/_cython/_credentials')
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800190try:
191 os.mkdir(credentials_dir)
192except OSError:
193 pass
194shutil.copyfile('etc/roots.pem', os.path.join(credentials_dir, 'roots.pem'))
195
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800196PACKAGE_DATA = {
Masood Malekghassemif7474092016-02-12 12:04:53 -0800197 # Binaries that may or may not be present in the final installation, but are
198 # mentioned here for completeness.
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800199 'grpc._cython': [
Nathaniel Manistafa6cad72016-02-05 21:26:54 +0000200 '_credentials/roots.pem',
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800201 '_windows/grpc_c.32.python',
202 '_windows/grpc_c.64.python',
203 ],
204}
Masood Malekghassemi1ff429d2016-06-02 16:39:20 -0700205PACKAGES = setuptools.find_packages(PYTHON_STEM)
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700206
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700207setuptools.setup(
208 name='grpcio',
209 version=grpc_version.VERSION,
210 license=LICENSE,
211 ext_modules=CYTHON_EXTENSION_MODULES,
212 packages=list(PACKAGES),
213 package_dir=PACKAGE_DIRECTORIES,
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700214 package_data=PACKAGE_DATA,
215 install_requires=INSTALL_REQUIRES,
216 setup_requires=SETUP_REQUIRES,
217 cmdclass=COMMAND_CLASS,
Masood Malekghassemiab5309c2016-05-05 18:39:01 -0700218)