blob: 366ebe3b3fb59aa26c3cd9bffc4737d4924a7ef5 [file] [log] [blame]
Nathaniel Manistab68f3d12015-01-23 21:32:47 +00001# Copyright 2015, Google Inc.
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 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
Alexander Staubo8eac91e2015-04-06 12:06:22 -040034import sys
Nathaniel Manistab68f3d12015-01-23 21:32:47 +000035
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070036from distutils import core as _core
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070037from distutils import extension as _extension
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070038import setuptools
39
Masood Malekghassemid65632a2015-07-27 14:30:09 -070040# Ensure we're in the proper directory whether or not we're being used by pip.
41os.chdir(os.path.dirname(os.path.abspath(__file__)))
42
43# Break import-style to ensure we can actually find our commands module.
44import commands
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070045
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070046# Environment variable to determine whether or not the Cython extension should
47# *use* Cython or use the generated C files. Note that this requires the C files
48# to have been generated by building first *with* Cython support.
49BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False)
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070050
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070051# Environment variable to determine whether or not to enable coverage analysis
52# in Cython modules.
53ENABLE_CYTHON_TRACING = os.environ.get(
54 'GRPC_PYTHON_ENABLE_CYTHON_TRACING', False)
55
56# Environment variable to determine whether or not to include the test files in
57# the installation.
58INSTALL_TESTS = os.environ.get('GRPC_PYTHON_INSTALL_TESTS', False)
59
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070060CYTHON_EXTENSION_PACKAGE_NAMES = ()
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070061
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070062CYTHON_EXTENSION_MODULE_NAMES = (
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070063 'grpc._cython.cygrpc',
64 'grpc._cython._cygrpc.call',
65 'grpc._cython._cygrpc.channel',
66 'grpc._cython._cygrpc.completion_queue',
67 'grpc._cython._cygrpc.credentials',
68 'grpc._cython._cygrpc.records',
69 'grpc._cython._cygrpc.server',
70)
71
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070072EXTENSION_INCLUDE_DIRECTORIES = (
Nathaniel Manistaa035afc2015-02-15 01:16:37 +000073 '.',
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000074)
75
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070076EXTENSION_LIBRARIES = (
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000077 'grpc',
murgatroid994a171f82015-03-02 13:17:53 -080078 'gpr',
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000079)
Alexander Staubo8eac91e2015-04-06 12:06:22 -040080if not "darwin" in sys.platform:
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070081 EXTENSION_LIBRARIES += ('rt',)
Nathaniel Manistaa4ead5d2015-01-31 01:33:27 +000082
Masood Malekghassemi743c10c2015-06-16 18:05:27 -070083
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070084def cython_extensions(package_names, module_names, include_dirs, libraries,
85 build_with_cython=False):
86 file_extension = 'pyx' if build_with_cython else 'c'
87 module_files = [name.replace('.', '/') + '.' + file_extension
88 for name in module_names]
89 extensions = [
90 _extension.Extension(
91 name=module_name, sources=[module_file],
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070092 include_dirs=include_dirs, libraries=libraries,
93 define_macros=[('CYTHON_TRACE_NOGIL', 1)] if ENABLE_CYTHON_TRACING else []
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -070094 ) for (module_name, module_file) in zip(module_names, module_files)
95 ]
96 if build_with_cython:
97 import Cython.Build
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -070098 return Cython.Build.cythonize(
99 extensions,
100 compiler_directives={'linetrace': bool(ENABLE_CYTHON_TRACING)})
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700101 else:
102 return extensions
103
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700104CYTHON_EXTENSION_MODULES = cython_extensions(
105 list(CYTHON_EXTENSION_PACKAGE_NAMES), list(CYTHON_EXTENSION_MODULE_NAMES),
106 list(EXTENSION_INCLUDE_DIRECTORIES), list(EXTENSION_LIBRARIES),
107 bool(BUILD_WITH_CYTHON))
Masood Malekghassemi5a65bcd2015-09-25 11:27:10 -0700108
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700109PACKAGE_DIRECTORIES = {
Masood Malekghassemife8dc882015-07-27 15:30:33 -0700110 '': '.',
Nathaniel Manistab8b0adf2015-01-29 00:30:51 +0000111}
112
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700113INSTALL_REQUIRES = (
Nathaniel Manistaa1880222015-09-10 22:16:04 +0000114 'enum34>=1.0.4',
115 'futures>=2.2.0',
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700116)
117
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700118SETUP_REQUIRES = (
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700119 'sphinx>=1.3',
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700120) + INSTALL_REQUIRES
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700121
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700122COMMAND_CLASS = {
Masood Malekghassemi791cc312015-07-27 14:22:33 -0700123 'doc': commands.SphinxDocumentation,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700124 'build_proto_modules': commands.BuildProtoModules,
Masood Malekghassemi5c147632015-07-31 14:08:19 -0700125 'build_project_metadata': commands.BuildProjectMetadata,
126 'build_py': commands.BuildPy,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700127 'gather': commands.Gather,
128 'run_interop': commands.RunInterop,
Masood Malekghassemid65632a2015-07-27 14:30:09 -0700129}
130
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700131TEST_PACKAGE_DATA = {
132 'tests.interop': [
133 'credentials/ca.pem',
134 'credentials/server1.key',
135 'credentials/server1.pem',
136 ],
137 'tests.protoc_plugin': [
138 'protoc_plugin_test.proto',
139 ],
140 'tests.unit': [
141 'credentials/ca.pem',
142 'credentials/server1.key',
143 'credentials/server1.pem',
144 ],
145}
146
147TESTS_REQUIRE = (
148 'oauth2client>=1.4.7',
Nathaniel Manista27f62432016-01-04 19:12:29 +0000149 'protobuf>=3.0.0a3',
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700150 'coverage>=4.0',
151) + INSTALL_REQUIRES
152
153TEST_SUITE = 'tests'
154TEST_LOADER = 'tests:Loader'
155TEST_RUNNER = 'tests:Runner'
156
157PACKAGE_DATA = {}
158if INSTALL_TESTS:
159 PACKAGE_DATA = dict(PACKAGE_DATA, **TEST_PACKAGE_DATA)
160 PACKAGES = setuptools.find_packages('.')
161else:
162 PACKAGES = setuptools.find_packages('.', exclude=['tests', 'tests.*'])
163
Masood Malekghassemi451887b2015-03-30 17:44:19 -0700164setuptools.setup(
165 name='grpcio',
Masood Malekghassemib5a18062015-12-14 18:42:26 -0800166 version='0.12.0b0',
Masood Malekghassemif21dc7e2015-11-20 19:28:41 -0800167 ext_modules=CYTHON_EXTENSION_MODULES,
Masood Malekghassemi7566c9a2015-10-21 20:29:23 -0700168 packages=list(PACKAGES),
169 package_dir=PACKAGE_DIRECTORIES,
170 install_requires=INSTALL_REQUIRES,
171 setup_requires=SETUP_REQUIRES,
172 cmdclass=COMMAND_CLASS,
173 tests_require=TESTS_REQUIRE,
174 test_suite=TEST_SUITE,
175 test_loader=TEST_LOADER,
176 test_runner=TEST_RUNNER,
Masood Malekghassemi451887b2015-03-30 17:44:19 -0700177)