blob: 3c36da870288fd240c1abfe27e055a2fa33cbcc5 [file] [log] [blame]
murgatroid993466c4b2016-01-12 10:26:04 -08001# Copyright 2015-2016, Google Inc.
Nathaniel Manistab68f3d12015-01-23 21:32:47 +00002# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7#
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above
11# copyright notice, this list of conditions and the following disclaimer
12# in the documentation and/or other materials provided with the
13# distribution.
14# * Neither the name of Google Inc. nor the names of its
15# contributors may be used to endorse or promote products derived from
16# this software without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +000030"""A setup module for the GRPC Python package."""
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000031
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070032import os
Masood Malekghassemid65632a2015-07-27 14:30:09 -070033import os.path
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -080034import shutil
Alexander Staubo8eac91e2015-04-06 12:06:22 -040035import sys
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000036
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070037from distutils import core as _core
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070038from distutils import extension as _extension
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070039import setuptools
Masood Malekghassemib7e7b3f2015-12-17 00:16:49 -080040from setuptools.command import egg_info
41
42# Redirect the manifest template from MANIFEST.in to PYTHON-MANIFEST.in.
43egg_info.manifest_maker.template = 'PYTHON-MANIFEST.in'
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070044
Masood Malekghassemie540b572016-01-14 15:00:34 -080045PYTHON_STEM = './src/python/grpcio'
46CORE_INCLUDE = ('./include', '.',)
Masood Malekghassemi387e1162016-01-05 10:16:12 -080047BORINGSSL_INCLUDE = ('./third_party/boringssl/include',)
Masood Malekghassemi0cc27922016-01-22 16:32:41 -080048ZLIB_INCLUDE = ('./third_party/zlib',)
Masood Malekghassemi116982e2015-12-11 15:53:38 -080049
Masood Malekghassemid65632a2015-07-27 14:30:09 -070050# Ensure we're in the proper directory whether or not we're being used by pip.
51os.chdir(os.path.dirname(os.path.abspath(__file__)))
Masood Malekghassemi58a1dc22016-01-21 14:23:55 -080052sys.path.insert(0, os.path.abspath(PYTHON_STEM))
Masood Malekghassemid65632a2015-07-27 14:30:09 -070053
Masood Malekghassemi116982e2015-12-11 15:53:38 -080054# Break import-style to ensure we can actually find our in-repo dependencies.
Masood Malekghassemid65632a2015-07-27 14:30:09 -070055import commands
Masood Malekghassemi116982e2015-12-11 15:53:38 -080056import grpc_core_dependencies
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070057
Masood Malekghassemidf97aec2016-01-11 16:19:14 -080058LICENSE = '3-clause BSD'
59
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070060# Environment variable to determine whether or not the Cython extension should
61# *use* Cython or use the generated C files. Note that this requires the C files
62# to have been generated by building first *with* Cython support.
63BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070064
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070065# Environment variable to determine whether or not to enable coverage analysis
66# in Cython modules.
67ENABLE_CYTHON_TRACING = os.environ.get(
68 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False)
69
70# Environment variable to determine whether or not to include the test files in
71# the installation.
72INSTALL_TESTS = os.environ.get('GRPC_PYTHON_INSTALL_TESTS', False)
73
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070074CYTHON_EXTENSION_PACKAGE_NAMES = ()
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070075
Masood Malekghassemi116982e2015-12-11 15:53:38 -080076CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070077
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -080078CYTHON_HELPER_C_FILES = (
79 os.path.join(PYTHON_STEM, 'grpc/_cython/loader.c'),
80 os.path.join(PYTHON_STEM, 'grpc/_cython/imports.generated.c'),
81)
82
83CORE_C_FILES = ()
84if not "win32" in sys.platform:
85 CORE_C_FILES += tuple(grpc_core_dependencies.CORE_SOURCE_FILES)
86
Masood Malekghassemi387e1162016-01-05 10:16:12 -080087EXTENSION_INCLUDE_DIRECTORIES = (
Masood Malekghassemi0cc27922016-01-22 16:32:41 -080088 (PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000089
Masood Malekghassemi0cc27922016-01-22 16:32:41 -080090EXTENSION_LIBRARIES = ('m',)
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -080091if not "darwin" in sys.platform and not "win32" in sys.platform:
92 EXTENSION_LIBRARIES += ('rt',)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000093
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -080094DEFINE_MACROS = (('OPENSSL_NO_ASM', 1), ('_WIN32_WINNT', 0x600))
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070095
Craig Tiller00572a92016-02-02 08:45:46 -080096CFLAGS = ()
97LDFLAGS = ()
Craig Tiller4bef7ce2016-02-02 08:38:43 -080098if "linux" in sys.platform:
99 LDFLAGS += ('-Wl,-wrap,memcpy',)
100if "linux" in sys.platform or "darwin" in sys.platform:
101 CFLAGS += ('-fvisibility=hidden',)
102 DEFINE_MACROS += (('PyMODINIT_FUNC', '__attribute__((visibility ("default"))) void'),)
103
104
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800105def cython_extensions(package_names, module_names, extra_sources, include_dirs,
106 libraries, define_macros, build_with_cython=False):
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800107 if ENABLE_CYTHON_TRACING:
108 define_macros = define_macros + [('CYTHON_TRACE_NOGIL', 1)]
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700109 file_extension = 'pyx' if build_with_cython else 'c'
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800110 module_files = [os.path.join(PYTHON_STEM,
111 name.replace('.', '/') + '.' + file_extension)
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700112 for name in module_names]
113 extensions = [
114 _extension.Extension(
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800115 name=module_name,
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800116 sources=[module_file] + extra_sources,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700117 include_dirs=include_dirs, libraries=libraries,
Masood Malekghassemi387e1162016-01-05 10:16:12 -0800118 define_macros=define_macros,
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700119 ) for (module_name, module_file) in zip(module_names, module_files)
120 ]
121 if build_with_cython:
122 import Cython.Build
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700123 return Cython.Build.cythonize(
124 extensions,
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800125 include_path=include_dirs,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700126 compiler_directives={'linetrace': bool(ENABLE_CYTHON_TRACING)})
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700127 else:
128 return extensions
129
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700130CYTHON_EXTENSION_MODULES = cython_extensions(
131 list(CYTHON_EXTENSION_PACKAGE_NAMES), list(CYTHON_EXTENSION_MODULE_NAMES),
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800132 list(CYTHON_HELPER_C_FILES) + list(CORE_C_FILES),
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700133 list(EXTENSION_INCLUDE_DIRECTORIES), list(EXTENSION_LIBRARIES),
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800134 list(DEFINE_MACROS), bool(BUILD_WITH_CYTHON))
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700135
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700136PACKAGE_DIRECTORIES = {
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800137 '': PYTHON_STEM,
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +0000138}
139
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700140INSTALL_REQUIRES = (
Masood Malekghassemi154b0ee2016-01-25 16:45:29 -0800141 'six>=1.10',
Nathaniel Manistaa1880222015-09-10 22:16:04 +0000142 'enum34>=1.0.4',
143 'futures>=2.2.0',
Masood Malekghassemiad32ff42016-01-21 15:15:38 -0800144 # TODO(atash): eventually split the grpcio package into a metapackage
145 # depending on protobuf and the runtime component (independent of protobuf)
146 'protobuf>=3.0.0a3',
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700147)
148
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700149SETUP_REQUIRES = (
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700150 'sphinx>=1.3',
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700151) + INSTALL_REQUIRES
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700152
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700153COMMAND_CLASS = {
Masood Malekghassemi154b0ee2016-01-25 16:45:29 -0800154 'install': commands.Install,
Masood Malekghassemi791cc312015-07-27 14:22:33 -0700155 'doc': commands.SphinxDocumentation,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700156 'build_proto_modules': commands.BuildProtoModules,
Masood Malekghassemi5c147632015-07-31 14:08:19 -0700157 'build_project_metadata': commands.BuildProjectMetadata,
158 'build_py': commands.BuildPy,
Masood Malekghassemi1d177812016-01-12 09:21:57 -0800159 'build_ext': commands.BuildExt,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700160 'gather': commands.Gather,
161 'run_interop': commands.RunInterop,
Masood Malekghassemi154b0ee2016-01-25 16:45:29 -0800162 'bdist_egg_grpc_custom': commands.BdistEggCustomName,
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700163}
164
Masood Malekghassemi6d2ef172016-01-04 15:33:17 -0800165# Ensure that package data is copied over before any commands have been run:
166credentials_dir = os.path.join(PYTHON_STEM, 'grpc/_adapter/credentials')
167try:
168 os.mkdir(credentials_dir)
169except OSError:
170 pass
171shutil.copyfile('etc/roots.pem', os.path.join(credentials_dir, 'roots.pem'))
172
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700173TEST_PACKAGE_DATA = {
174 'tests.interop': [
175 'credentials/ca.pem',
176 'credentials/server1.key',
177 'credentials/server1.pem',
178 ],
179 'tests.protoc_plugin': [
180 'protoc_plugin_test.proto',
181 ],
182 'tests.unit': [
183 'credentials/ca.pem',
184 'credentials/server1.key',
185 'credentials/server1.pem',
186 ],
187}
188
189TESTS_REQUIRE = (
190 'oauth2client>=1.4.7',
Nathaniel Manista27f62432016-01-04 19:12:29 +0000191 'protobuf>=3.0.0a3',
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700192 'coverage>=4.0',
193) + INSTALL_REQUIRES
194
195TEST_SUITE = 'tests'
196TEST_LOADER = 'tests:Loader'
197TEST_RUNNER = 'tests:Runner'
198
Masood Malekghassemidf1e07e2016-02-02 14:17:14 -0800199PACKAGE_DATA = {
200 'grpc._adapter': [
201 'credentials/roots.pem'
202 ],
203 'grpc._cython': [
204 '_windows/grpc.def',
205 '_windows/grpc_c.32.python',
206 '_windows/grpc_c.64.python',
207 ],
208}
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700209if INSTALL_TESTS:
210 PACKAGE_DATA = dict(PACKAGE_DATA, **TEST_PACKAGE_DATA)
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800211 PACKAGES = setuptools.find_packages(PYTHON_STEM)
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700212else:
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800213 PACKAGES = setuptools.find_packages(
214 PYTHON_STEM, exclude=['tests', 'tests.*'])
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700215
Masood Malekghassemi451887b2015-03-30 17:44:19 -0700216setuptools.setup(
217 name='grpcio',
Masood Malekghassemi154b0ee2016-01-25 16:45:29 -0800218 version='0.12.0b6',
Masood Malekghassemidf97aec2016-01-11 16:19:14 -0800219 license=LICENSE,
Masood Malekghassemif21dc7e2015-11-20 19:28:41 -0800220 ext_modules=CYTHON_EXTENSION_MODULES,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700221 packages=list(PACKAGES),
222 package_dir=PACKAGE_DIRECTORIES,
Masood Malekghassemi116982e2015-12-11 15:53:38 -0800223 package_data=PACKAGE_DATA,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700224 install_requires=INSTALL_REQUIRES,
225 setup_requires=SETUP_REQUIRES,
226 cmdclass=COMMAND_CLASS,
227 tests_require=TESTS_REQUIRE,
228 test_suite=TEST_SUITE,
229 test_loader=TEST_LOADER,
230 test_runner=TEST_RUNNER,
Masood Malekghassemi451887b2015-03-30 17:44:19 -0700231)