Jan Tattermusch | 7897ae9 | 2017-06-07 22:57:36 +0200 | [diff] [blame] | 1 | # Copyright 2015 gRPC authors. |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 2 | # |
Jan Tattermusch | 7897ae9 | 2017-06-07 22:57:36 +0200 | [diff] [blame] | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 6 | # |
Jan Tattermusch | 7897ae9 | 2017-06-07 22:57:36 +0200 | [diff] [blame] | 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 8 | # |
Jan Tattermusch | 7897ae9 | 2017-06-07 22:57:36 +0200 | [diff] [blame] | 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 14 | |
Nathaniel Manista | b8b0adf | 2015-01-29 00:30:51 +0000 | [diff] [blame] | 15 | """A setup module for the GRPC Python package.""" |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 16 | from distutils import cygwinccompiler |
Masood Malekghassemi | abdff3d | 2016-07-18 13:26:25 -0700 | [diff] [blame] | 17 | from distutils import extension as _extension |
Masood Malekghassemi | 398b06e | 2016-07-15 23:17:41 -0700 | [diff] [blame] | 18 | from distutils import util |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 19 | import os |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 20 | import os.path |
Masood Malekghassemi | abdff3d | 2016-07-18 13:26:25 -0700 | [diff] [blame] | 21 | import pkg_resources |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 22 | import platform |
Masood Malekghassemi | 398b06e | 2016-07-15 23:17:41 -0700 | [diff] [blame] | 23 | import re |
Ken Payson | fe754b4 | 2016-06-23 12:32:07 -0700 | [diff] [blame] | 24 | import shlex |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 25 | import shutil |
Alexander Staubo | 8eac91e | 2015-04-06 12:06:22 -0400 | [diff] [blame] | 26 | import sys |
Ken Payson | 1efb601 | 2016-06-08 13:06:44 -0700 | [diff] [blame] | 27 | import sysconfig |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 28 | |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 29 | import setuptools |
Masood Malekghassemi | b7e7b3f | 2015-12-17 00:16:49 -0800 | [diff] [blame] | 30 | from setuptools.command import egg_info |
| 31 | |
| 32 | # Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in. |
| 33 | egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in' |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 34 | |
Leifur Halldor Asgeirsson | 38a3d7a | 2016-03-01 10:00:08 -0500 | [diff] [blame] | 35 | PY3 = sys.version_info.major == 3 |
Masood Malekghassemi | 58a0494 | 2016-07-16 01:42:52 -0700 | [diff] [blame] | 36 | PYTHON_STEM = os.path.join('src', 'python', 'grpcio') |
| 37 | CORE_INCLUDE = ('include', '.',) |
Thomas Bechtold | 30ce693 | 2018-05-24 17:12:13 +0200 | [diff] [blame] | 38 | SSL_INCLUDE = (os.path.join('third_party', 'boringssl', 'include'),) |
Masood Malekghassemi | 58a0494 | 2016-07-16 01:42:52 -0700 | [diff] [blame] | 39 | ZLIB_INCLUDE = (os.path.join('third_party', 'zlib'),) |
David Garcia Quintas | 92ea033 | 2018-06-04 13:49:15 -0700 | [diff] [blame] | 40 | NANOPB_INCLUDE = (os.path.join('third_party', 'nanopb'),) |
Yuchen Zeng | f64bf28 | 2016-08-11 21:21:32 -0700 | [diff] [blame] | 41 | CARES_INCLUDE = ( |
Yuchen Zeng | 6694bb0 | 2017-01-23 17:09:51 -0800 | [diff] [blame] | 42 | os.path.join('third_party', 'cares'), |
| 43 | os.path.join('third_party', 'cares', 'cares'),) |
Yuchen Zeng | f64bf28 | 2016-08-11 21:21:32 -0700 | [diff] [blame] | 44 | if 'darwin' in sys.platform: |
Yuchen Zeng | 6694bb0 | 2017-01-23 17:09:51 -0800 | [diff] [blame] | 45 | CARES_INCLUDE += (os.path.join('third_party', 'cares', 'config_darwin'),) |
Mehrdad Afshari | 451c02b | 2017-10-12 10:28:14 -0700 | [diff] [blame] | 46 | if 'freebsd' in sys.platform: |
| 47 | CARES_INCLUDE += (os.path.join('third_party', 'cares', 'config_freebsd'),) |
| 48 | if 'linux' in sys.platform: |
| 49 | CARES_INCLUDE += (os.path.join('third_party', 'cares', 'config_linux'),) |
Frank Groeneveld | fbf8128 | 2017-10-12 08:27:14 +0200 | [diff] [blame] | 50 | if 'openbsd' in sys.platform: |
| 51 | CARES_INCLUDE += (os.path.join('third_party', 'cares', 'config_openbsd'),) |
Alex Polcyn | 77f64f7 | 2018-03-01 19:22:53 +0000 | [diff] [blame] | 52 | ADDRESS_SORTING_INCLUDE = (os.path.join('third_party', 'address_sorting', 'include'),) |
Masood Malekghassemi | b928de8 | 2016-10-28 15:05:33 -0700 | [diff] [blame] | 53 | README = os.path.join(PYTHON_STEM, 'README.rst') |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 54 | |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 55 | # Ensure we're in the proper directory whether or not we're being used by pip. |
| 56 | os.chdir(os.path.dirname(os.path.abspath(__file__))) |
Masood Malekghassemi | 58a1dc2 | 2016-01-21 14:23:55 -0800 | [diff] [blame] | 57 | sys.path.insert(0, os.path.abspath(PYTHON_STEM)) |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 58 | |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 59 | # Break import-style to ensure we can actually find our in-repo dependencies. |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 60 | import _spawn_patch |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 61 | import commands |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 62 | import grpc_core_dependencies |
Craig Tiller | f008f06 | 2016-02-08 12:48:03 -0800 | [diff] [blame] | 63 | import grpc_version |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 64 | |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 65 | _spawn_patch.monkeypatch_spawn() |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 66 | |
Jan Tattermusch | 4d5c310 | 2017-06-07 10:23:56 +0200 | [diff] [blame] | 67 | LICENSE = 'Apache License 2.0' |
Masood Malekghassemi | df97aec | 2016-01-11 16:19:14 -0800 | [diff] [blame] | 68 | |
Ken Payson | 9c42044 | 2017-07-25 12:06:46 -0700 | [diff] [blame] | 69 | CLASSIFIERS = [ |
| 70 | 'Development Status :: 5 - Production/Stable', |
| 71 | 'Programming Language :: Python', |
| 72 | 'Programming Language :: Python :: 2', |
| 73 | 'Programming Language :: Python :: 2.7', |
| 74 | 'Programming Language :: Python :: 3', |
| 75 | 'Programming Language :: Python :: 3.4', |
| 76 | 'Programming Language :: Python :: 3.5', |
| 77 | 'Programming Language :: Python :: 3.6', |
| 78 | 'License :: OSI Approved :: Apache Software License', |
Ken Payson | f5f5ed0 | 2017-08-24 11:46:03 -0700 | [diff] [blame] | 79 | ] |
Ken Payson | 9c42044 | 2017-07-25 12:06:46 -0700 | [diff] [blame] | 80 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 81 | # Environment variable to determine whether or not the Cython extension should |
| 82 | # *use* Cython or use the generated C files. Note that this requires the C files |
Masood Malekghassemi | f17f0f6 | 2016-07-08 12:07:49 -0700 | [diff] [blame] | 83 | # to have been generated by building first *with* Cython support. Even if this |
| 84 | # is set to false, if the script detects that the generated `.c` file isn't |
| 85 | # present, then it will still attempt to use Cython. |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 86 | BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False) |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 87 | |
Thomas Bechtold | 30ce693 | 2018-05-24 17:12:13 +0200 | [diff] [blame] | 88 | # Export this variable to use the system installation of openssl. You need to |
| 89 | # have the header files installed (in /usr/include/openssl) and during |
| 90 | # runtime, the shared libary must be installed |
| 91 | BUILD_WITH_SYSTEM_OPENSSL = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_OPENSSL', |
| 92 | False) |
| 93 | |
Thomas Bechtold | 3823d90 | 2018-05-25 06:52:23 +0200 | [diff] [blame] | 94 | # Export this variable to use the system installation of zlib. You need to |
| 95 | # have the header files installed (in /usr/include/) and during |
| 96 | # runtime, the shared libary must be installed |
| 97 | BUILD_WITH_SYSTEM_ZLIB = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_ZLIB', |
| 98 | False) |
| 99 | |
Thomas Bechtold | 78a6e04 | 2018-05-25 07:08:05 +0200 | [diff] [blame] | 100 | # Export this variable to use the system installation of cares. You need to |
| 101 | # have the header files installed (in /usr/include/) and during |
| 102 | # runtime, the shared libary must be installed |
| 103 | BUILD_WITH_SYSTEM_CARES = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_CARES', |
| 104 | False) |
| 105 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 106 | # Environment variable to determine whether or not to enable coverage analysis |
| 107 | # in Cython modules. |
| 108 | ENABLE_CYTHON_TRACING = os.environ.get( |
| 109 | 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False) |
| 110 | |
Masood Malekghassemi | 2da4666 | 2016-10-25 15:57:48 -0700 | [diff] [blame] | 111 | # Environment variable specifying whether or not there's interest in setting up |
| 112 | # documentation building. |
| 113 | ENABLE_DOCUMENTATION_BUILD = os.environ.get( |
| 114 | 'GRPC_PYTHON_ENABLE_DOCUMENTATION_BUILD', False) |
| 115 | |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 116 | # There are some situations (like on Windows) where CC, CFLAGS, and LDFLAGS are |
| 117 | # entirely ignored/dropped/forgotten by distutils and its Cygwin/MinGW support. |
| 118 | # We use these environment variables to thus get around that without locking |
| 119 | # ourselves in w.r.t. the multitude of operating systems this ought to build on. |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 120 | # We can also use these variables as a way to inject environment-specific |
| 121 | # compiler/linker flags. We assume GCC-like compilers and/or MinGW as a |
| 122 | # reasonable default. |
| 123 | EXTRA_ENV_COMPILE_ARGS = os.environ.get('GRPC_PYTHON_CFLAGS', None) |
| 124 | EXTRA_ENV_LINK_ARGS = os.environ.get('GRPC_PYTHON_LDFLAGS', None) |
| 125 | if EXTRA_ENV_COMPILE_ARGS is None: |
kpayson64 | 1bfff8e | 2018-03-13 22:05:48 -0700 | [diff] [blame] | 126 | EXTRA_ENV_COMPILE_ARGS = ' -std=c++11' |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 127 | if 'win32' in sys.platform and sys.version_info < (3, 5): |
kpayson64 | 1bfff8e | 2018-03-13 22:05:48 -0700 | [diff] [blame] | 128 | EXTRA_ENV_COMPILE_ARGS += ' -D_hypot=hypot' |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 129 | # We use define flags here and don't directly add to DEFINE_MACROS below to |
| 130 | # ensure that the expert user/builder has a way of turning it off (via the |
| 131 | # envvars) without adding yet more GRPC-specific envvars. |
| 132 | # See https://sourceforge.net/p/mingw-w64/bugs/363/ |
| 133 | if '32' in platform.architecture()[0]: |
| 134 | EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime32 -D_timeb=__timeb32 -D_ftime_s=_ftime32_s' |
| 135 | else: |
| 136 | EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime64 -D_timeb=__timeb64' |
Ken Payson | 571c75a | 2017-04-13 16:39:37 -0700 | [diff] [blame] | 137 | elif "linux" in sys.platform: |
kpayson64 | 1bfff8e | 2018-03-13 22:05:48 -0700 | [diff] [blame] | 138 | EXTRA_ENV_COMPILE_ARGS += ' -std=gnu99 -fvisibility=hidden -fno-wrapv -fno-exceptions' |
Ken Payson | 571c75a | 2017-04-13 16:39:37 -0700 | [diff] [blame] | 139 | elif "darwin" in sys.platform: |
Ken Payson | f8d6fb7 | 2017-06-15 17:32:49 -0700 | [diff] [blame] | 140 | EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden -fno-wrapv -fno-exceptions' |
kpayson64 | 1bfff8e | 2018-03-13 22:05:48 -0700 | [diff] [blame] | 141 | EXTRA_ENV_COMPILE_ARGS += ' -DPB_FIELD_16BIT' |
Ken Payson | 45a520f | 2017-01-24 09:40:21 -0800 | [diff] [blame] | 142 | |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 143 | if EXTRA_ENV_LINK_ARGS is None: |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 144 | EXTRA_ENV_LINK_ARGS = '' |
| 145 | if "linux" in sys.platform or "darwin" in sys.platform: |
| 146 | EXTRA_ENV_LINK_ARGS += ' -lpthread' |
| 147 | elif "win32" in sys.platform and sys.version_info < (3, 5): |
| 148 | msvcr = cygwinccompiler.get_msvcr()[0] |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 149 | # TODO(atash) sift through the GCC specs to see if libstdc++ can have any |
| 150 | # influence on the linkage outcome on MinGW for non-C++ programs. |
| 151 | EXTRA_ENV_LINK_ARGS += ( |
| 152 | ' -static-libgcc -static-libstdc++ -mcrtdll={msvcr} ' |
| 153 | '-static'.format(msvcr=msvcr)) |
Nicolas "Pixel" Noble | e3e17d3 | 2016-08-20 01:45:32 +0200 | [diff] [blame] | 154 | if "linux" in sys.platform: |
Ken Payson | f8d6fb7 | 2017-06-15 17:32:49 -0700 | [diff] [blame] | 155 | EXTRA_ENV_LINK_ARGS += ' -Wl,-wrap,memcpy -static-libgcc' |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 156 | |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 157 | EXTRA_COMPILE_ARGS = shlex.split(EXTRA_ENV_COMPILE_ARGS) |
| 158 | EXTRA_LINK_ARGS = shlex.split(EXTRA_ENV_LINK_ARGS) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 159 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 160 | CYTHON_EXTENSION_PACKAGE_NAMES = () |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 161 | |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 162 | CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',) |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 163 | |
Masood Malekghassemi | 3acddb2 | 2016-07-13 18:38:33 -0700 | [diff] [blame] | 164 | CYTHON_HELPER_C_FILES = () |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 165 | |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 166 | CORE_C_FILES = tuple(grpc_core_dependencies.CORE_SOURCE_FILES) |
Jan Tattermusch | dc57fbd | 2017-09-06 21:26:08 +0200 | [diff] [blame] | 167 | if "win32" in sys.platform: |
Yuchen Zeng | b4d33e0 | 2017-04-20 16:41:25 -0700 | [diff] [blame] | 168 | CORE_C_FILES = filter(lambda x: 'third_party/cares' not in x, CORE_C_FILES) |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 169 | |
Thomas Bechtold | 30ce693 | 2018-05-24 17:12:13 +0200 | [diff] [blame] | 170 | if BUILD_WITH_SYSTEM_OPENSSL: |
| 171 | CORE_C_FILES = filter(lambda x: 'third_party/boringssl' not in x, CORE_C_FILES) |
| 172 | CORE_C_FILES = filter(lambda x: 'src/boringssl' not in x, CORE_C_FILES) |
| 173 | SSL_INCLUDE = (os.path.join('/usr', 'include', 'openssl'),) |
| 174 | |
Thomas Bechtold | 3823d90 | 2018-05-25 06:52:23 +0200 | [diff] [blame] | 175 | if BUILD_WITH_SYSTEM_ZLIB: |
| 176 | CORE_C_FILES = filter(lambda x: 'third_party/zlib' not in x, CORE_C_FILES) |
| 177 | ZLIB_INCLUDE = (os.path.join('/usr', 'include'),) |
| 178 | |
Thomas Bechtold | 78a6e04 | 2018-05-25 07:08:05 +0200 | [diff] [blame] | 179 | if BUILD_WITH_SYSTEM_CARES: |
| 180 | CORE_C_FILES = filter(lambda x: 'third_party/cares' not in x, CORE_C_FILES) |
| 181 | CARES_INCLUDE = (os.path.join('/usr', 'include'),) |
| 182 | |
Masood Malekghassemi | 387e116 | 2016-01-05 10:16:12 -0800 | [diff] [blame] | 183 | EXTENSION_INCLUDE_DIRECTORIES = ( |
Thomas Bechtold | 30ce693 | 2018-05-24 17:12:13 +0200 | [diff] [blame] | 184 | (PYTHON_STEM,) + CORE_INCLUDE + SSL_INCLUDE + ZLIB_INCLUDE + |
David Garcia Quintas | 92ea033 | 2018-06-04 13:49:15 -0700 | [diff] [blame] | 185 | NANOPB_INCLUDE + CARES_INCLUDE + ADDRESS_SORTING_INCLUDE) |
Nathaniel Manista | a4ead5d | 2015-01-31 01:33:27 +0000 | [diff] [blame] | 186 | |
Masood Malekghassemi | 10509a2 | 2016-02-03 13:32:22 -0800 | [diff] [blame] | 187 | EXTENSION_LIBRARIES = () |
Masood Malekghassemi | c9c53ee | 2016-02-03 10:30:23 -0800 | [diff] [blame] | 188 | if "linux" in sys.platform: |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 189 | EXTENSION_LIBRARIES += ('rt',) |
Masood Malekghassemi | 10509a2 | 2016-02-03 13:32:22 -0800 | [diff] [blame] | 190 | if not "win32" in sys.platform: |
| 191 | EXTENSION_LIBRARIES += ('m',) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 192 | if "win32" in sys.platform: |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 193 | EXTENSION_LIBRARIES += ('advapi32', 'ws2_32',) |
Thomas Bechtold | 30ce693 | 2018-05-24 17:12:13 +0200 | [diff] [blame] | 194 | if BUILD_WITH_SYSTEM_OPENSSL: |
| 195 | EXTENSION_LIBRARIES += ('ssl', 'crypto',) |
Thomas Bechtold | 3823d90 | 2018-05-25 06:52:23 +0200 | [diff] [blame] | 196 | if BUILD_WITH_SYSTEM_ZLIB: |
| 197 | EXTENSION_LIBRARIES += ('z',) |
Thomas Bechtold | 78a6e04 | 2018-05-25 07:08:05 +0200 | [diff] [blame] | 198 | if BUILD_WITH_SYSTEM_CARES: |
| 199 | EXTENSION_LIBRARIES += ('cares',) |
Nathaniel Manista | a4ead5d | 2015-01-31 01:33:27 +0000 | [diff] [blame] | 200 | |
Masood Malekghassemi | 58a0494 | 2016-07-16 01:42:52 -0700 | [diff] [blame] | 201 | DEFINE_MACROS = ( |
| 202 | ('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600), |
Yihua Zhang | 04fb58e | 2018-03-08 06:49:24 -0800 | [diff] [blame] | 203 | ('GPR_BACKWARDS_COMPATIBILITY_MODE', 1)) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 204 | if "win32" in sys.platform: |
Jan Tattermusch | dc57fbd | 2017-09-06 21:26:08 +0200 | [diff] [blame] | 205 | # TODO(zyc): Re-enble c-ares on x64 and x86 windows after fixing the |
| 206 | # ares_library_init compilation issue |
| 207 | DEFINE_MACROS += (('WIN32_LEAN_AND_MEAN', 1), ('CARES_STATICLIB', 1), |
Matt Kwong | e7a60bd | 2018-01-22 17:00:13 -0800 | [diff] [blame] | 208 | ('GRPC_ARES', 0), ('NTDDI_VERSION', 0x06000000), |
| 209 | ('NOMINMAX', 1),) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 210 | if '64bit' in platform.architecture()[0]: |
Jan Tattermusch | dc57fbd | 2017-09-06 21:26:08 +0200 | [diff] [blame] | 211 | DEFINE_MACROS += (('MS_WIN64', 1),) |
Ken Payson | 5998cd7 | 2016-08-10 15:39:43 -0700 | [diff] [blame] | 212 | elif sys.version_info >= (3, 5): |
| 213 | # For some reason, this is needed to get access to inet_pton/inet_ntop |
| 214 | # on msvc, but only for 32 bits |
| 215 | DEFINE_MACROS += (('NTDDI_VERSION', 0x06000000),) |
Yuchen Zeng | 88d4e77 | 2016-08-16 22:34:02 -0700 | [diff] [blame] | 216 | else: |
Ken Payson | 9714e03 | 2017-10-10 11:18:49 -0700 | [diff] [blame] | 217 | DEFINE_MACROS += (('HAVE_CONFIG_H', 1), ('GRPC_ENABLE_FORK_SUPPORT', 1),) |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 218 | |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 219 | LDFLAGS = tuple(EXTRA_LINK_ARGS) |
| 220 | CFLAGS = tuple(EXTRA_COMPILE_ARGS) |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 221 | if "linux" in sys.platform or "darwin" in sys.platform: |
Leifur Halldor Asgeirsson | 38a3d7a | 2016-03-01 10:00:08 -0500 | [diff] [blame] | 222 | pymodinit_type = 'PyObject*' if PY3 else 'void' |
kpayson64 | 1bfff8e | 2018-03-13 22:05:48 -0700 | [diff] [blame] | 223 | pymodinit = 'extern "C" __attribute__((visibility ("default"))) {}'.format(pymodinit_type) |
Leifur Halldor Asgeirsson | 38a3d7a | 2016-03-01 10:00:08 -0500 | [diff] [blame] | 224 | DEFINE_MACROS += (('PyMODINIT_FUNC', pymodinit),) |
Alexander Polcyn | d4a3bb8 | 2017-11-30 09:27:16 -0800 | [diff] [blame] | 225 | DEFINE_MACROS += (('GRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK', 1),) |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 226 | |
Ken Payson | 1efb601 | 2016-06-08 13:06:44 -0700 | [diff] [blame] | 227 | # By default, Python3 distutils enforces compatibility of |
| 228 | # c plugins (.so files) with the OSX version Python3 was built with. |
| 229 | # For Python3.4, this is OSX 10.6, but we need Thread Local Support (__thread) |
| 230 | if 'darwin' in sys.platform and PY3: |
| 231 | mac_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET') |
| 232 | if mac_target and (pkg_resources.parse_version(mac_target) < |
| 233 | pkg_resources.parse_version('10.7.0')): |
| 234 | os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.7' |
Masood Malekghassemi | 398b06e | 2016-07-15 23:17:41 -0700 | [diff] [blame] | 235 | os.environ['_PYTHON_HOST_PLATFORM'] = re.sub( |
| 236 | r'macosx-[0-9]+\.[0-9]+-(.+)', |
| 237 | r'macosx-10.7-\1', |
| 238 | util.get_platform()) |
Ken Payson | 1efb601 | 2016-06-08 13:06:44 -0700 | [diff] [blame] | 239 | |
Masood Malekghassemi | fd9cc10 | 2016-07-21 14:20:43 -0700 | [diff] [blame] | 240 | def cython_extensions_and_necessity(): |
| 241 | cython_module_files = [os.path.join(PYTHON_STEM, |
| 242 | name.replace('.', '/') + '.pyx') |
| 243 | for name in CYTHON_EXTENSION_MODULE_NAMES] |
Ken Payson | ae5ca1b | 2017-04-14 16:34:26 -0700 | [diff] [blame] | 244 | config = os.environ.get('CONFIG', 'opt') |
Ken Payson | 5b034e6 | 2017-04-14 16:25:51 -0700 | [diff] [blame] | 245 | prefix = 'libs/' + config + '/' |
Ken Payson | 571c75a | 2017-04-13 16:39:37 -0700 | [diff] [blame] | 246 | if "darwin" in sys.platform: |
Ken Payson | 5b034e6 | 2017-04-14 16:25:51 -0700 | [diff] [blame] | 247 | extra_objects = [prefix + 'libares.a', |
| 248 | prefix + 'libboringssl.a', |
| 249 | prefix + 'libgpr.a', |
| 250 | prefix + 'libgrpc.a'] |
Ken Payson | 2d9c9d9 | 2017-04-13 17:07:32 -0700 | [diff] [blame] | 251 | core_c_files = [] |
Ken Payson | 571c75a | 2017-04-13 16:39:37 -0700 | [diff] [blame] | 252 | else: |
Ken Payson | 2d9c9d9 | 2017-04-13 17:07:32 -0700 | [diff] [blame] | 253 | core_c_files = list(CORE_C_FILES) |
Ken Payson | 571c75a | 2017-04-13 16:39:37 -0700 | [diff] [blame] | 254 | extra_objects = [] |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 255 | extensions = [ |
| 256 | _extension.Extension( |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 257 | name=module_name, |
Ken Payson | 2d9c9d9 | 2017-04-13 17:07:32 -0700 | [diff] [blame] | 258 | sources=[module_file] + list(CYTHON_HELPER_C_FILES) + core_c_files, |
Masood Malekghassemi | fd9cc10 | 2016-07-21 14:20:43 -0700 | [diff] [blame] | 259 | include_dirs=list(EXTENSION_INCLUDE_DIRECTORIES), |
| 260 | libraries=list(EXTENSION_LIBRARIES), |
| 261 | define_macros=list(DEFINE_MACROS), |
Ken Payson | 571c75a | 2017-04-13 16:39:37 -0700 | [diff] [blame] | 262 | extra_objects=extra_objects, |
Craig Tiller | a7f3e05 | 2016-02-05 15:02:39 -0800 | [diff] [blame] | 263 | extra_compile_args=list(CFLAGS), |
| 264 | extra_link_args=list(LDFLAGS), |
Masood Malekghassemi | fd9cc10 | 2016-07-21 14:20:43 -0700 | [diff] [blame] | 265 | ) for (module_name, module_file) in zip(list(CYTHON_EXTENSION_MODULE_NAMES), cython_module_files) |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 266 | ] |
Masood Malekghassemi | fd9cc10 | 2016-07-21 14:20:43 -0700 | [diff] [blame] | 267 | need_cython = BUILD_WITH_CYTHON |
| 268 | if not BUILD_WITH_CYTHON: |
| 269 | need_cython = need_cython or not commands.check_and_update_cythonization(extensions) |
| 270 | return commands.try_cythonize(extensions, linetracing=ENABLE_CYTHON_TRACING, mandatory=BUILD_WITH_CYTHON), need_cython |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 271 | |
Masood Malekghassemi | fd9cc10 | 2016-07-21 14:20:43 -0700 | [diff] [blame] | 272 | CYTHON_EXTENSION_MODULES, need_cython = cython_extensions_and_necessity() |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 273 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 274 | PACKAGE_DIRECTORIES = { |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 275 | '': PYTHON_STEM, |
Nathaniel Manista | b8b0adf | 2015-01-29 00:30:51 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 278 | INSTALL_REQUIRES = ( |
Ken Payson | 2b7fae0 | 2016-06-28 17:20:37 -0700 | [diff] [blame] | 279 | 'six>=1.5.2', |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 280 | ) |
| 281 | |
Mehrdad Afshari | 0b739a2 | 2018-07-26 07:14:08 -0700 | [diff] [blame] | 282 | if not PY3: |
| 283 | INSTALL_REQUIRES += ('futures>=2.2.0', 'enum34>=1.0.4') |
| 284 | |
Ken Payson | 2b7fae0 | 2016-06-28 17:20:37 -0700 | [diff] [blame] | 285 | SETUP_REQUIRES = INSTALL_REQUIRES + ( |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 286 | 'sphinx>=1.3', |
Ken Payson | 2b7fae0 | 2016-06-28 17:20:37 -0700 | [diff] [blame] | 287 | 'sphinx_rtd_theme>=0.1.8', |
| 288 | 'six>=1.10', |
Masood Malekghassemi | 2da4666 | 2016-10-25 15:57:48 -0700 | [diff] [blame] | 289 | ) if ENABLE_DOCUMENTATION_BUILD else () |
| 290 | |
Masood Malekghassemi | 5e43db8 | 2016-12-14 18:23:25 -0800 | [diff] [blame] | 291 | try: |
| 292 | import Cython |
| 293 | except ImportError: |
| 294 | if BUILD_WITH_CYTHON: |
| 295 | sys.stderr.write( |
| 296 | "You requested a Cython build via GRPC_PYTHON_BUILD_WITH_CYTHON, " |
| 297 | "but do not have Cython installed. We won't stop you from using " |
| 298 | "other commands, but the extension files will fail to build.\n") |
| 299 | elif need_cython: |
| 300 | sys.stderr.write( |
| 301 | 'We could not find Cython. Setup may take 10-20 minutes.\n') |
| 302 | SETUP_REQUIRES += ('cython>=0.23',) |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 303 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 304 | COMMAND_CLASS = { |
Masood Malekghassemi | 791cc31 | 2015-07-27 14:22:33 -0700 | [diff] [blame] | 305 | 'doc': commands.SphinxDocumentation, |
Masood Malekghassemi | 5c14763 | 2015-07-31 14:08:19 -0700 | [diff] [blame] | 306 | 'build_project_metadata': commands.BuildProjectMetadata, |
| 307 | 'build_py': commands.BuildPy, |
Masood Malekghassemi | 1d17781 | 2016-01-12 09:21:57 -0800 | [diff] [blame] | 308 | 'build_ext': commands.BuildExt, |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 309 | 'gather': commands.Gather, |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 312 | # Ensure that package data is copied over before any commands have been run: |
Masood Malekghassemi | 58a0494 | 2016-07-16 01:42:52 -0700 | [diff] [blame] | 313 | credentials_dir = os.path.join(PYTHON_STEM, 'grpc', '_cython', '_credentials') |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 314 | try: |
| 315 | os.mkdir(credentials_dir) |
| 316 | except OSError: |
| 317 | pass |
Masood Malekghassemi | 58a0494 | 2016-07-16 01:42:52 -0700 | [diff] [blame] | 318 | shutil.copyfile(os.path.join('etc', 'roots.pem'), |
| 319 | os.path.join(credentials_dir, 'roots.pem')) |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 320 | |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 321 | PACKAGE_DATA = { |
Masood Malekghassemi | f747409 | 2016-02-12 12:04:53 -0800 | [diff] [blame] | 322 | # Binaries that may or may not be present in the final installation, but are |
| 323 | # mentioned here for completeness. |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 324 | 'grpc._cython': [ |
Nathaniel Manista | fa6cad7 | 2016-02-05 21:26:54 +0000 | [diff] [blame] | 325 | '_credentials/roots.pem', |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 326 | '_windows/grpc_c.32.python', |
| 327 | '_windows/grpc_c.64.python', |
| 328 | ], |
| 329 | } |
Masood Malekghassemi | 1ff429d | 2016-06-02 16:39:20 -0700 | [diff] [blame] | 330 | PACKAGES = setuptools.find_packages(PYTHON_STEM) |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 331 | |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 332 | setuptools.setup( |
| 333 | name='grpcio', |
| 334 | version=grpc_version.VERSION, |
Ken Payson | 7835430 | 2017-03-06 09:28:16 -0800 | [diff] [blame] | 335 | description='HTTP/2-based RPC framework', |
| 336 | author='The gRPC Authors', |
| 337 | author_email='grpc-io@googlegroups.com', |
Mehrdad Afshari | bb3d95b | 2017-07-10 22:24:28 +0000 | [diff] [blame] | 338 | url='https://grpc.io', |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 339 | license=LICENSE, |
Ken Payson | 9c42044 | 2017-07-25 12:06:46 -0700 | [diff] [blame] | 340 | classifiers=CLASSIFIERS, |
Masood Malekghassemi | b928de8 | 2016-10-28 15:05:33 -0700 | [diff] [blame] | 341 | long_description=open(README).read(), |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 342 | ext_modules=CYTHON_EXTENSION_MODULES, |
| 343 | packages=list(PACKAGES), |
| 344 | package_dir=PACKAGE_DIRECTORIES, |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 345 | package_data=PACKAGE_DATA, |
| 346 | install_requires=INSTALL_REQUIRES, |
| 347 | setup_requires=SETUP_REQUIRES, |
| 348 | cmdclass=COMMAND_CLASS, |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 349 | ) |