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