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