Craig Tiller | 6169d5f | 2016-03-31 07:46:18 -0700 | [diff] [blame] | 1 | # Copyright 2015, Google Inc. |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 2 | # 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 Manista | b8b0adf | 2015-01-29 00:30:51 +0000 | [diff] [blame] | 30 | """A setup module for the GRPC Python package.""" |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 31 | |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 32 | import os |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 33 | import os.path |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 34 | import platform |
Ken Payson | fe754b4 | 2016-06-23 12:32:07 -0700 | [diff] [blame] | 35 | import shlex |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 36 | import shutil |
Alexander Staubo | 8eac91e | 2015-04-06 12:06:22 -0400 | [diff] [blame] | 37 | import sys |
Ken Payson | 1efb601 | 2016-06-08 13:06:44 -0700 | [diff] [blame] | 38 | import sysconfig |
Nathaniel Manista | b68f3d1 | 2015-01-23 21:32:47 +0000 | [diff] [blame] | 39 | |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 40 | from distutils import core as _core |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 41 | from distutils import extension as _extension |
Ken Payson | 1efb601 | 2016-06-08 13:06:44 -0700 | [diff] [blame] | 42 | import pkg_resources |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 43 | import setuptools |
Masood Malekghassemi | b7e7b3f | 2015-12-17 00:16:49 -0800 | [diff] [blame] | 44 | from setuptools.command import egg_info |
| 45 | |
| 46 | # Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in. |
| 47 | egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in' |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 48 | |
Leifur Halldor Asgeirsson | 38a3d7a | 2016-03-01 10:00:08 -0500 | [diff] [blame] | 49 | PY3 = sys.version_info.major == 3 |
Masood Malekghassemi | e540b57 | 2016-01-14 15:00:34 -0800 | [diff] [blame] | 50 | PYTHON_STEM = './src/python/grpcio' |
| 51 | CORE_INCLUDE = ('./include', '.',) |
Masood Malekghassemi | 387e116 | 2016-01-05 10:16:12 -0800 | [diff] [blame] | 52 | BORINGSSL_INCLUDE = ('./third_party/boringssl/include',) |
Masood Malekghassemi | 0cc2792 | 2016-01-22 16:32:41 -0800 | [diff] [blame] | 53 | ZLIB_INCLUDE = ('./third_party/zlib',) |
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. |
Masood Malekghassemi | 06c857c | 2016-06-13 20:53:02 -0700 | [diff] [blame] | 60 | import _unixccompiler_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 | |
Masood Malekghassemi | c3e3ae5 | 2016-07-11 15:10:02 -0700 | [diff] [blame] | 65 | if 'win32' in sys.platform: |
| 66 | _unixccompiler_patch.monkeypatch_unix_compiler() |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 67 | |
| 68 | |
Masood Malekghassemi | df97aec | 2016-01-11 16:19:14 -0800 | [diff] [blame] | 69 | LICENSE = '3-clause BSD' |
| 70 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 71 | # Environment variable to determine whether or not the Cython extension should |
| 72 | # *use* Cython or use the generated C files. Note that this requires the C files |
Masood Malekghassemi | f17f0f6 | 2016-07-08 12:07:49 -0700 | [diff] [blame] | 73 | # to have been generated by building first *with* Cython support. Even if this |
| 74 | # is set to false, if the script detects that the generated `.c` file isn't |
| 75 | # present, then it will still attempt to use Cython. |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 76 | BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False) |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 77 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 78 | # Environment variable to determine whether or not to enable coverage analysis |
| 79 | # in Cython modules. |
| 80 | ENABLE_CYTHON_TRACING = os.environ.get( |
| 81 | 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False) |
| 82 | |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 83 | # There are some situations (like on Windows) where CC, CFLAGS, and LDFLAGS are |
| 84 | # entirely ignored/dropped/forgotten by distutils and its Cygwin/MinGW support. |
| 85 | # We use these environment variables to thus get around that without locking |
| 86 | # ourselves in w.r.t. the multitude of operating systems this ought to build on. |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 87 | # We can also use these variables as a way to inject environment-specific |
| 88 | # compiler/linker flags. We assume GCC-like compilers and/or MinGW as a |
| 89 | # reasonable default. |
| 90 | EXTRA_ENV_COMPILE_ARGS = os.environ.get('GRPC_PYTHON_CFLAGS', None) |
| 91 | EXTRA_ENV_LINK_ARGS = os.environ.get('GRPC_PYTHON_LDFLAGS', None) |
| 92 | if EXTRA_ENV_COMPILE_ARGS is None: |
| 93 | EXTRA_ENV_COMPILE_ARGS = '-fno-wrapv' |
| 94 | if 'win32' in sys.platform: |
| 95 | # We use define flags here and don't directly add to DEFINE_MACROS below to |
| 96 | # ensure that the expert user/builder has a way of turning it off (via the |
| 97 | # envvars) without adding yet more GRPC-specific envvars. |
| 98 | # See https://sourceforge.net/p/mingw-w64/bugs/363/ |
| 99 | if '32' in platform.architecture()[0]: |
| 100 | EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime32 -D_timeb=__timeb32 -D_ftime_s=_ftime32_s' |
| 101 | else: |
| 102 | EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime64 -D_timeb=__timeb64' |
| 103 | elif "linux" in sys.platform or "darwin" in sys.platform: |
| 104 | EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden' |
| 105 | if EXTRA_ENV_LINK_ARGS is None: |
| 106 | EXTRA_ENV_LINK_ARGS = '-lpthread' |
| 107 | if 'win32' in sys.platform: |
| 108 | # TODO(atash) check if this is actually safe to just import and call on |
| 109 | # non-Windows (to avoid breaking import style) |
| 110 | from distutils.cygwinccompiler import get_msvcr |
| 111 | msvcr = get_msvcr()[0] |
| 112 | # TODO(atash) sift through the GCC specs to see if libstdc++ can have any |
| 113 | # influence on the linkage outcome on MinGW for non-C++ programs. |
| 114 | EXTRA_ENV_LINK_ARGS += ( |
| 115 | ' -static-libgcc -static-libstdc++ -mcrtdll={msvcr} ' |
| 116 | '-static'.format(msvcr=msvcr)) |
| 117 | elif "linux" in sys.platform: |
| 118 | EXTRA_ENV_LINK_ARGS += ' -Wl,-wrap,memcpy' |
| 119 | EXTRA_COMPILE_ARGS = shlex.split(EXTRA_ENV_COMPILE_ARGS) |
| 120 | EXTRA_LINK_ARGS = shlex.split(EXTRA_ENV_LINK_ARGS) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 121 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 122 | CYTHON_EXTENSION_PACKAGE_NAMES = () |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 123 | |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 124 | CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',) |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 125 | |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 126 | CYTHON_HELPER_C_FILES = ( |
| 127 | os.path.join(PYTHON_STEM, 'grpc/_cython/loader.c'), |
| 128 | os.path.join(PYTHON_STEM, 'grpc/_cython/imports.generated.c'), |
| 129 | ) |
| 130 | |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 131 | CORE_C_FILES = tuple(grpc_core_dependencies.CORE_SOURCE_FILES) |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 132 | |
Masood Malekghassemi | 387e116 | 2016-01-05 10:16:12 -0800 | [diff] [blame] | 133 | EXTENSION_INCLUDE_DIRECTORIES = ( |
Masood Malekghassemi | 0cc2792 | 2016-01-22 16:32:41 -0800 | [diff] [blame] | 134 | (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE) |
Nathaniel Manista | a4ead5d | 2015-01-31 01:33:27 +0000 | [diff] [blame] | 135 | |
Masood Malekghassemi | 10509a2 | 2016-02-03 13:32:22 -0800 | [diff] [blame] | 136 | EXTENSION_LIBRARIES = () |
Masood Malekghassemi | c9c53ee | 2016-02-03 10:30:23 -0800 | [diff] [blame] | 137 | if "linux" in sys.platform: |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 138 | EXTENSION_LIBRARIES += ('rt',) |
Masood Malekghassemi | 10509a2 | 2016-02-03 13:32:22 -0800 | [diff] [blame] | 139 | if not "win32" in sys.platform: |
| 140 | EXTENSION_LIBRARIES += ('m',) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 141 | if "win32" in sys.platform: |
| 142 | EXTENSION_LIBRARIES += ('ws2_32',) |
Nathaniel Manista | a4ead5d | 2015-01-31 01:33:27 +0000 | [diff] [blame] | 143 | |
Craig Tiller | 71ea4a1 | 2016-02-04 15:06:41 -0800 | [diff] [blame] | 144 | DEFINE_MACROS = (('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600), ('GPR_BACKWARDS_COMPATIBILITY_MODE', 1),) |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 145 | if "win32" in sys.platform: |
| 146 | DEFINE_MACROS += (('OPENSSL_WINDOWS', 1), ('WIN32_LEAN_AND_MEAN', 1),) |
| 147 | if '64bit' in platform.architecture()[0]: |
| 148 | DEFINE_MACROS += (('MS_WIN64', 1),) |
Masood Malekghassemi | 743c10c | 2015-06-16 18:05:27 -0700 | [diff] [blame] | 149 | |
Masood Malekghassemi | 586e383 | 2016-06-03 19:29:12 -0700 | [diff] [blame] | 150 | LDFLAGS = tuple(EXTRA_LINK_ARGS) |
| 151 | CFLAGS = tuple(EXTRA_COMPILE_ARGS) |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 152 | if "linux" in sys.platform or "darwin" in sys.platform: |
Leifur Halldor Asgeirsson | 38a3d7a | 2016-03-01 10:00:08 -0500 | [diff] [blame] | 153 | pymodinit_type = 'PyObject*' if PY3 else 'void' |
Leifur Halldor Asgeirsson | 38a3d7a | 2016-03-01 10:00:08 -0500 | [diff] [blame] | 154 | pymodinit = '__attribute__((visibility ("default"))) {}'.format(pymodinit_type) |
| 155 | DEFINE_MACROS += (('PyMODINIT_FUNC', pymodinit),) |
Craig Tiller | 4bef7ce | 2016-02-02 08:38:43 -0800 | [diff] [blame] | 156 | |
| 157 | |
Ken Payson | 1efb601 | 2016-06-08 13:06:44 -0700 | [diff] [blame] | 158 | # By default, Python3 distutils enforces compatibility of |
| 159 | # c plugins (.so files) with the OSX version Python3 was built with. |
| 160 | # For Python3.4, this is OSX 10.6, but we need Thread Local Support (__thread) |
| 161 | if 'darwin' in sys.platform and PY3: |
| 162 | mac_target = sysconfig.get_config_var('MACOSX_DEPLOYMENT_TARGET') |
| 163 | if mac_target and (pkg_resources.parse_version(mac_target) < |
| 164 | pkg_resources.parse_version('10.7.0')): |
| 165 | os.environ['MACOSX_DEPLOYMENT_TARGET'] = '10.7' |
| 166 | |
| 167 | |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 168 | def cython_extensions(): |
| 169 | module_names = list(CYTHON_EXTENSION_MODULE_NAMES) |
| 170 | extra_sources = list(CYTHON_HELPER_C_FILES) + list(CORE_C_FILES) |
| 171 | include_dirs = list(EXTENSION_INCLUDE_DIRECTORIES) |
| 172 | libraries = list(EXTENSION_LIBRARIES) |
| 173 | define_macros = list(DEFINE_MACROS) |
| 174 | build_with_cython = bool(BUILD_WITH_CYTHON) |
Masood Malekghassemi | 68a94c8 | 2016-03-09 11:45:07 -0800 | [diff] [blame] | 175 | # Set compiler directives linetrace argument only if we care about tracing; |
| 176 | # this is due to Cython having different behavior between linetrace being |
| 177 | # False and linetrace being unset. See issue #5689. |
| 178 | cython_compiler_directives = {} |
Masood Malekghassemi | 387e116 | 2016-01-05 10:16:12 -0800 | [diff] [blame] | 179 | if ENABLE_CYTHON_TRACING: |
| 180 | define_macros = define_macros + [('CYTHON_TRACE_NOGIL', 1)] |
Masood Malekghassemi | 68a94c8 | 2016-03-09 11:45:07 -0800 | [diff] [blame] | 181 | cython_compiler_directives['linetrace'] = True |
Masood Malekghassemi | f17f0f6 | 2016-07-08 12:07:49 -0700 | [diff] [blame] | 182 | pyx_module_files = [os.path.join(PYTHON_STEM, |
| 183 | name.replace('.', '/') + '.pyx') |
| 184 | for name in module_names] |
| 185 | c_module_files = [os.path.join(PYTHON_STEM, |
| 186 | name.replace('.', '/') + '.c') |
| 187 | for name in module_names] |
| 188 | if not build_with_cython: |
| 189 | for module_file in c_module_files: |
| 190 | if not os.path.isfile(module_file): |
| 191 | sys.stderr.write('Cython-generated files are missing; ' |
| 192 | 'forcing Cython build...\n') |
| 193 | build_with_cython = True |
| 194 | break |
| 195 | module_files = pyx_module_files if build_with_cython else c_module_files |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 196 | extensions = [ |
| 197 | _extension.Extension( |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 198 | name=module_name, |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 199 | sources=[module_file] + extra_sources, |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 200 | include_dirs=include_dirs, libraries=libraries, |
Masood Malekghassemi | 387e116 | 2016-01-05 10:16:12 -0800 | [diff] [blame] | 201 | define_macros=define_macros, |
Craig Tiller | a7f3e05 | 2016-02-05 15:02:39 -0800 | [diff] [blame] | 202 | extra_compile_args=list(CFLAGS), |
| 203 | extra_link_args=list(LDFLAGS), |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 204 | ) for (module_name, module_file) in zip(module_names, module_files) |
| 205 | ] |
| 206 | if build_with_cython: |
| 207 | import Cython.Build |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 208 | return Cython.Build.cythonize( |
| 209 | extensions, |
Masood Malekghassemi | 116982e | 2015-12-11 15:53:38 -0800 | [diff] [blame] | 210 | include_path=include_dirs, |
Masood Malekghassemi | 68a94c8 | 2016-03-09 11:45:07 -0800 | [diff] [blame] | 211 | compiler_directives=cython_compiler_directives) |
Masood Malekghassemi | 5a65bcd | 2015-09-25 11:27:10 -0700 | [diff] [blame] | 212 | else: |
| 213 | return extensions |
| 214 | |
Masood Malekghassemi | d66be0b | 2016-07-07 11:24:39 -0700 | [diff] [blame] | 215 | CYTHON_EXTENSION_MODULES = cython_extensions() |
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', |
Nathaniel Manista | a188022 | 2015-09-10 22:16:04 +0000 | [diff] [blame] | 223 | 'enum34>=1.0.4', |
| 224 | 'futures>=2.2.0', |
Masood Malekghassemi | ad32ff4 | 2016-01-21 15:15:38 -0800 | [diff] [blame] | 225 | # TODO(atash): eventually split the grpcio package into a metapackage |
| 226 | # depending on protobuf and the runtime component (independent of protobuf) |
| 227 | 'protobuf>=3.0.0a3', |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 228 | ) |
| 229 | |
Ken Payson | 2b7fae0 | 2016-06-28 17:20:37 -0700 | [diff] [blame] | 230 | SETUP_REQUIRES = INSTALL_REQUIRES + ( |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 231 | 'sphinx>=1.3', |
Ken Payson | 2b7fae0 | 2016-06-28 17:20:37 -0700 | [diff] [blame] | 232 | 'sphinx_rtd_theme>=0.1.8', |
| 233 | 'six>=1.10', |
| 234 | ) |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 235 | |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 236 | COMMAND_CLASS = { |
Masood Malekghassemi | 791cc31 | 2015-07-27 14:22:33 -0700 | [diff] [blame] | 237 | 'doc': commands.SphinxDocumentation, |
Masood Malekghassemi | 5c14763 | 2015-07-31 14:08:19 -0700 | [diff] [blame] | 238 | 'build_project_metadata': commands.BuildProjectMetadata, |
| 239 | 'build_py': commands.BuildPy, |
Masood Malekghassemi | 1d17781 | 2016-01-12 09:21:57 -0800 | [diff] [blame] | 240 | 'build_ext': commands.BuildExt, |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 241 | 'gather': commands.Gather, |
Masood Malekghassemi | d65632a | 2015-07-27 14:30:09 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 244 | # Ensure that package data is copied over before any commands have been run: |
Nathaniel Manista | fa6cad7 | 2016-02-05 21:26:54 +0000 | [diff] [blame] | 245 | credentials_dir = os.path.join(PYTHON_STEM, 'grpc/_cython/_credentials') |
Masood Malekghassemi | 6d2ef17 | 2016-01-04 15:33:17 -0800 | [diff] [blame] | 246 | try: |
| 247 | os.mkdir(credentials_dir) |
| 248 | except OSError: |
| 249 | pass |
| 250 | shutil.copyfile('etc/roots.pem', os.path.join(credentials_dir, 'roots.pem')) |
| 251 | |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 252 | PACKAGE_DATA = { |
Masood Malekghassemi | f747409 | 2016-02-12 12:04:53 -0800 | [diff] [blame] | 253 | # Binaries that may or may not be present in the final installation, but are |
| 254 | # mentioned here for completeness. |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 255 | 'grpc._cython': [ |
Nathaniel Manista | fa6cad7 | 2016-02-05 21:26:54 +0000 | [diff] [blame] | 256 | '_credentials/roots.pem', |
Masood Malekghassemi | df1e07e | 2016-02-02 14:17:14 -0800 | [diff] [blame] | 257 | '_windows/grpc_c.32.python', |
| 258 | '_windows/grpc_c.64.python', |
| 259 | ], |
| 260 | } |
Masood Malekghassemi | 1ff429d | 2016-06-02 16:39:20 -0700 | [diff] [blame] | 261 | PACKAGES = setuptools.find_packages(PYTHON_STEM) |
Masood Malekghassemi | 7566c9a | 2015-10-21 20:29:23 -0700 | [diff] [blame] | 262 | |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 263 | setuptools.setup( |
| 264 | name='grpcio', |
| 265 | version=grpc_version.VERSION, |
| 266 | license=LICENSE, |
| 267 | ext_modules=CYTHON_EXTENSION_MODULES, |
| 268 | packages=list(PACKAGES), |
| 269 | package_dir=PACKAGE_DIRECTORIES, |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 270 | package_data=PACKAGE_DATA, |
| 271 | install_requires=INSTALL_REQUIRES, |
| 272 | setup_requires=SETUP_REQUIRES, |
| 273 | cmdclass=COMMAND_CLASS, |
Masood Malekghassemi | ab5309c | 2016-05-05 18:39:01 -0700 | [diff] [blame] | 274 | ) |