src/python/grpcio_tests/setup.py
Go to the documentation of this file.
1 # Copyright 2015 gRPC authors.
2 #
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
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
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.
14 """A setup module for the gRPC Python package."""
15 
16 import multiprocessing
17 import os
18 import os.path
19 import sys
20 
21 import grpc_tools.command
22 import setuptools
23 
24 PY3 = sys.version_info.major == 3
25 
26 # Ensure we're in the proper directory whether or not we're being used by pip.
27 os.chdir(os.path.dirname(os.path.abspath(__file__)))
28 
29 # Break import-style to ensure we can actually find our in-repo dependencies.
30 import commands
31 import grpc_version
32 
33 LICENSE = 'Apache License 2.0'
34 
35 PACKAGE_DIRECTORIES = {
36  '': '.',
37 }
38 
39 INSTALL_REQUIRES = (
40  'coverage>=4.0', 'grpcio>={version}'.format(version=grpc_version.VERSION),
41  'grpcio-channelz>={version}'.format(version=grpc_version.VERSION),
42  'grpcio-status>={version}'.format(version=grpc_version.VERSION),
43  'grpcio-tools>={version}'.format(version=grpc_version.VERSION),
44  'grpcio-health-checking>={version}'.format(version=grpc_version.VERSION),
45  'oauth2client>=1.4.7', 'protobuf>=3.12.0', 'six>=1.10',
46  'google-auth>=1.17.2', 'requests>=2.14.2')
47 
48 if not PY3:
49  INSTALL_REQUIRES += ('futures>=2.2.0', 'enum34>=1.0.4')
50 
51 COMMAND_CLASS = {
52  # Run `preprocess` *before* doing any packaging!
53  'preprocess': commands.GatherProto,
54  'build_package_protos': grpc_tools.command.BuildPackageProtos,
55  'build_py': commands.BuildPy,
56  'run_fork': commands.RunFork,
57  'run_interop': commands.RunInterop,
58  'test_lite': commands.TestLite,
59  'test_gevent': commands.TestGevent,
60  'test_aio': commands.TestAio,
61  'test_py3_only': commands.TestPy3Only,
62 }
63 
64 PACKAGE_DATA = {
65  'tests.interop': [
66  'credentials/ca.pem',
67  'credentials/server1.key',
68  'credentials/server1.pem',
69  ],
70  'tests.protoc_plugin.protos.invocation_testing': ['same.proto',],
71  'tests.protoc_plugin.protos.invocation_testing.split_messages': [
72  'messages.proto',
73  ],
74  'tests.protoc_plugin.protos.invocation_testing.split_services': [
75  'services.proto',
76  ],
77  'tests.testing.proto': [
78  'requests.proto',
79  'services.proto',
80  ],
81  'tests.unit': [
82  'credentials/ca.pem',
83  'credentials/server1.key',
84  'credentials/server1.pem',
85  ],
86  'tests': ['tests.json'],
87 }
88 
89 TEST_SUITE = 'tests'
90 TEST_LOADER = 'tests:Loader'
91 TEST_RUNNER = 'tests:Runner'
92 TESTS_REQUIRE = INSTALL_REQUIRES
93 
94 PACKAGES = setuptools.find_packages('.')
95 
96 if __name__ == "__main__":
97  multiprocessing.freeze_support()
98  setuptools.setup(
99  name='grpcio-tests',
100  version=grpc_version.VERSION,
101  license=LICENSE,
102  packages=list(PACKAGES),
103  package_dir=PACKAGE_DIRECTORIES,
104  package_data=PACKAGE_DATA,
105  install_requires=INSTALL_REQUIRES,
106  cmdclass=COMMAND_CLASS,
107  tests_require=TESTS_REQUIRE,
108  test_suite=TEST_SUITE,
109  test_loader=TEST_LOADER,
110  test_runner=TEST_RUNNER,
111  )
http2_test_server.format
format
Definition: http2_test_server.py:118
commands.BuildPy
Definition: commands.py:123
commands.TestLite
Definition: tests/commands.py:79
commands.RunFork
Definition: tests/commands.py:339
grpc_tools.command.BuildPackageProtos
Definition: command.py:50
commands.TestPy3Only
Definition: tests/commands.py:109
commands.TestGevent
Definition: tests/commands.py:172
commands.RunInterop
Definition: tests/commands.py:285
commands.GatherProto
Definition: tests/commands.py:43
commands.TestAio
Definition: tests/commands.py:140
grpc_tools.command
Definition: command.py:1


grpc
Author(s):
autogenerated on Thu Mar 13 2025 03:01:18