Tamir Duberstein | 9d9d0b7 | 2015-04-11 20:23:45 -0700 | [diff] [blame] | 1 | #! /usr/bin/env python |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 2 | # |
| 3 | # See README for usage instructions. |
Tamir Duberstein | 5018c43 | 2015-05-08 08:48:40 -0400 | [diff] [blame] | 4 | import glob |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 5 | import os |
kenton@google.com | a6de64a | 2009-04-18 02:28:15 +0000 | [diff] [blame] | 6 | import subprocess |
Tamir Duberstein | 5018c43 | 2015-05-08 08:48:40 -0400 | [diff] [blame] | 7 | import sys |
Paul Yang | 7f3e237 | 2017-01-31 09:17:32 -0800 | [diff] [blame] | 8 | import platform |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 9 | |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 10 | # We must use setuptools, not distutils, because we need to use the |
| 11 | # namespace_packages option for the "google" package. |
Dan O'Reilly | 3bdfb4b | 2015-08-20 13:51:26 -0400 | [diff] [blame] | 12 | from setuptools import setup, Extension, find_packages |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 13 | |
Benjamin Peterson | 188c44b | 2018-09-10 13:35:38 -0700 | [diff] [blame] | 14 | from distutils.command.build_py import build_py as _build_py |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 15 | from distutils.command.clean import clean as _clean |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 16 | from distutils.spawn import find_executable |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 17 | |
| 18 | # Find the Protocol Compiler. |
liujisi@google.com | e34f1f6 | 2012-12-05 01:25:12 +0000 | [diff] [blame] | 19 | if 'PROTOC' in os.environ and os.path.exists(os.environ['PROTOC']): |
| 20 | protoc = os.environ['PROTOC'] |
| 21 | elif os.path.exists("../src/protoc"): |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 22 | protoc = "../src/protoc" |
kenton@google.com | 4152d55 | 2009-04-22 03:20:21 +0000 | [diff] [blame] | 23 | elif os.path.exists("../src/protoc.exe"): |
| 24 | protoc = "../src/protoc.exe" |
kenton@google.com | 80aa23d | 2010-09-28 21:58:36 +0000 | [diff] [blame] | 25 | elif os.path.exists("../vsprojects/Debug/protoc.exe"): |
| 26 | protoc = "../vsprojects/Debug/protoc.exe" |
| 27 | elif os.path.exists("../vsprojects/Release/protoc.exe"): |
| 28 | protoc = "../vsprojects/Release/protoc.exe" |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 29 | else: |
| 30 | protoc = find_executable("protoc") |
| 31 | |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 32 | |
Jisi Liu | 4573e11 | 2015-03-04 16:45:13 -0800 | [diff] [blame] | 33 | def GetVersion(): |
| 34 | """Gets the version from google/protobuf/__init__.py |
| 35 | |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 36 | Do not import google.protobuf.__init__ directly, because an installed |
| 37 | protobuf library may be loaded instead.""" |
Jisi Liu | 4573e11 | 2015-03-04 16:45:13 -0800 | [diff] [blame] | 38 | |
Jisi Liu | 4573e11 | 2015-03-04 16:45:13 -0800 | [diff] [blame] | 39 | with open(os.path.join('google', 'protobuf', '__init__.py')) as version_file: |
Behzad Tabibian | 2bf92b3 | 2015-05-07 19:04:56 +0200 | [diff] [blame] | 40 | exec(version_file.read(), globals()) |
cclauss | 35567c1 | 2018-06-25 19:50:40 +0200 | [diff] [blame] | 41 | global __version__ |
Jisi Liu | 4573e11 | 2015-03-04 16:45:13 -0800 | [diff] [blame] | 42 | return __version__ |
| 43 | |
| 44 | |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 45 | def generate_proto(source, require = True): |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 46 | """Invokes the Protocol Compiler to generate a _pb2.py from the given |
| 47 | .proto file. Does nothing if the output already exists and is newer than |
| 48 | the input.""" |
| 49 | |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 50 | if not require and not os.path.exists(source): |
| 51 | return |
| 52 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 53 | output = source.replace(".proto", "_pb2.py").replace("../src/", "") |
| 54 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 55 | if (not os.path.exists(output) or |
| 56 | (os.path.exists(source) and |
| 57 | os.path.getmtime(source) > os.path.getmtime(output))): |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 58 | print("Generating %s..." % output) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 59 | |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 60 | if not os.path.exists(source): |
| 61 | sys.stderr.write("Can't find required file: %s\n" % source) |
| 62 | sys.exit(-1) |
| 63 | |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 64 | if protoc is None: |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 65 | sys.stderr.write( |
| 66 | "protoc is not installed nor found in ../src. Please compile it " |
| 67 | "or install the binary package.\n") |
| 68 | sys.exit(-1) |
| 69 | |
kenton@google.com | a6de64a | 2009-04-18 02:28:15 +0000 | [diff] [blame] | 70 | protoc_command = [ protoc, "-I../src", "-I.", "--python_out=.", source ] |
| 71 | if subprocess.call(protoc_command) != 0: |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 72 | sys.exit(-1) |
| 73 | |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 74 | def GenerateUnittestProtos(): |
Adam Cozzette | d64a2d9 | 2016-06-29 15:23:27 -0700 | [diff] [blame] | 75 | generate_proto("../src/google/protobuf/any_test.proto", False) |
Adam Cozzette | 13fd045 | 2017-09-12 10:32:01 -0700 | [diff] [blame] | 76 | generate_proto("../src/google/protobuf/map_proto2_unittest.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 77 | generate_proto("../src/google/protobuf/map_unittest.proto", False) |
Joshua Haberman | f1ce60e | 2016-12-03 11:51:25 -0500 | [diff] [blame] | 78 | generate_proto("../src/google/protobuf/test_messages_proto3.proto", False) |
Yilun Chong | 18a0c2c | 2017-06-27 18:24:15 -0700 | [diff] [blame] | 79 | generate_proto("../src/google/protobuf/test_messages_proto2.proto", False) |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 80 | generate_proto("../src/google/protobuf/unittest_arena.proto", False) |
| 81 | generate_proto("../src/google/protobuf/unittest_no_arena.proto", False) |
| 82 | generate_proto("../src/google/protobuf/unittest_no_arena_import.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 83 | generate_proto("../src/google/protobuf/unittest.proto", False) |
| 84 | generate_proto("../src/google/protobuf/unittest_custom_options.proto", False) |
| 85 | generate_proto("../src/google/protobuf/unittest_import.proto", False) |
| 86 | generate_proto("../src/google/protobuf/unittest_import_public.proto", False) |
| 87 | generate_proto("../src/google/protobuf/unittest_mset.proto", False) |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 88 | generate_proto("../src/google/protobuf/unittest_mset_wire_format.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 89 | generate_proto("../src/google/protobuf/unittest_no_generic_services.proto", False) |
| 90 | generate_proto("../src/google/protobuf/unittest_proto3_arena.proto", False) |
Jisi Liu | 46e8ff6 | 2015-10-05 11:59:43 -0700 | [diff] [blame] | 91 | generate_proto("../src/google/protobuf/util/json_format_proto3.proto", False) |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 92 | generate_proto("google/protobuf/internal/any_test.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 93 | generate_proto("google/protobuf/internal/descriptor_pool_test1.proto", False) |
| 94 | generate_proto("google/protobuf/internal/descriptor_pool_test2.proto", False) |
| 95 | generate_proto("google/protobuf/internal/factory_test1.proto", False) |
| 96 | generate_proto("google/protobuf/internal/factory_test2.proto", False) |
Adam Cozzette | d64a2d9 | 2016-06-29 15:23:27 -0700 | [diff] [blame] | 97 | generate_proto("google/protobuf/internal/file_options_test.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 98 | generate_proto("google/protobuf/internal/import_test_package/inner.proto", False) |
| 99 | generate_proto("google/protobuf/internal/import_test_package/outer.proto", False) |
| 100 | generate_proto("google/protobuf/internal/missing_enum_values.proto", False) |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 101 | generate_proto("google/protobuf/internal/message_set_extensions.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 102 | generate_proto("google/protobuf/internal/more_extensions.proto", False) |
| 103 | generate_proto("google/protobuf/internal/more_extensions_dynamic.proto", False) |
| 104 | generate_proto("google/protobuf/internal/more_messages.proto", False) |
Adam Cozzette | 837c94b | 2018-03-14 13:01:55 -0700 | [diff] [blame] | 105 | generate_proto("google/protobuf/internal/no_package.proto", False) |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 106 | generate_proto("google/protobuf/internal/packed_field_test.proto", False) |
Feng Xiao | 8e14268 | 2015-05-26 00:11:09 -0700 | [diff] [blame] | 107 | generate_proto("google/protobuf/internal/test_bad_identifiers.proto", False) |
| 108 | generate_proto("google/protobuf/pyext/python.proto", False) |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 109 | |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 110 | |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 111 | class clean(_clean): |
| 112 | def run(self): |
| 113 | # Delete generated files in the code tree. |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 114 | for (dirpath, dirnames, filenames) in os.walk("."): |
| 115 | for filename in filenames: |
| 116 | filepath = os.path.join(dirpath, filename) |
liujisi@google.com | 33165fe | 2010-11-02 13:14:58 +0000 | [diff] [blame] | 117 | if filepath.endswith("_pb2.py") or filepath.endswith(".pyc") or \ |
Thomas Hisch | 451e044 | 2018-04-09 21:43:10 +0200 | [diff] [blame] | 118 | filepath.endswith(".so") or filepath.endswith(".o"): |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 119 | os.remove(filepath) |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 120 | # _clean is an old-style class, so super() doesn't work. |
| 121 | _clean.run(self) |
| 122 | |
| 123 | class build_py(_build_py): |
| 124 | def run(self): |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 125 | # Generate necessary .proto file if it doesn't exist. |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 126 | generate_proto("../src/google/protobuf/descriptor.proto") |
liujisi@google.com | 9b7f6c5 | 2010-12-08 03:45:27 +0000 | [diff] [blame] | 127 | generate_proto("../src/google/protobuf/compiler/plugin.proto") |
Jisi Liu | 7464f40 | 2015-10-06 14:20:26 -0700 | [diff] [blame] | 128 | generate_proto("../src/google/protobuf/any.proto") |
Jisi Liu | f6fa5c7 | 2015-10-06 14:26:00 -0700 | [diff] [blame] | 129 | generate_proto("../src/google/protobuf/api.proto") |
| 130 | generate_proto("../src/google/protobuf/duration.proto") |
| 131 | generate_proto("../src/google/protobuf/empty.proto") |
Jisi Liu | 7464f40 | 2015-10-06 14:20:26 -0700 | [diff] [blame] | 132 | generate_proto("../src/google/protobuf/field_mask.proto") |
Jisi Liu | f6fa5c7 | 2015-10-06 14:26:00 -0700 | [diff] [blame] | 133 | generate_proto("../src/google/protobuf/source_context.proto") |
| 134 | generate_proto("../src/google/protobuf/struct.proto") |
| 135 | generate_proto("../src/google/protobuf/timestamp.proto") |
| 136 | generate_proto("../src/google/protobuf/type.proto") |
| 137 | generate_proto("../src/google/protobuf/wrappers.proto") |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 138 | GenerateUnittestProtos() |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 139 | |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 140 | # _build_py is an old-style class, so super() doesn't work. |
| 141 | _build_py.run(self) |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 142 | |
Josh Haberman | 325392d | 2015-08-17 12:30:49 -0700 | [diff] [blame] | 143 | class test_conformance(_build_py): |
| 144 | target = 'test_python' |
| 145 | def run(self): |
Yuchen Xie | 595231d | 2018-06-26 06:20:53 +0800 | [diff] [blame] | 146 | # Python 2.6 dodges these extra failures. |
| 147 | os.environ["CONFORMANCE_PYTHON_EXTRA_FAILURES"] = ( |
| 148 | "--failure_list failure_list_python-post26.txt") |
Josh Haberman | 4b31ffa | 2015-12-03 12:54:54 -0800 | [diff] [blame] | 149 | cmd = 'cd ../conformance && make %s' % (test_conformance.target) |
| 150 | status = subprocess.check_call(cmd, shell=True) |
Josh Haberman | 325392d | 2015-08-17 12:30:49 -0700 | [diff] [blame] | 151 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 152 | |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 153 | def get_option_from_sys_argv(option_str): |
| 154 | if option_str in sys.argv: |
| 155 | sys.argv.remove(option_str) |
| 156 | return True |
| 157 | return False |
| 158 | |
| 159 | |
liujisi@google.com | 9ced30c | 2012-08-01 06:22:19 +0000 | [diff] [blame] | 160 | if __name__ == '__main__': |
jieluo@google.com | 1eba9d9 | 2014-08-25 20:17:53 +0000 | [diff] [blame] | 161 | ext_module_list = [] |
Josh Haberman | 00700b7 | 2015-10-06 14:13:09 -0700 | [diff] [blame] | 162 | warnings_as_errors = '--warnings_as_errors' |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 163 | if get_option_from_sys_argv('--cpp_implementation'): |
| 164 | # Link libprotobuf.a and libprotobuf-lite.a statically with the |
| 165 | # extension. Note that those libraries have to be compiled with |
| 166 | # -fPIC for this to work. |
| 167 | compile_static_ext = get_option_from_sys_argv('--compile_static_extension') |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 168 | libraries = ['protobuf'] |
| 169 | extra_objects = None |
| 170 | if compile_static_ext: |
| 171 | libraries = None |
| 172 | extra_objects = ['../src/.libs/libprotobuf.a', |
| 173 | '../src/.libs/libprotobuf-lite.a'] |
Josh Haberman | 325392d | 2015-08-17 12:30:49 -0700 | [diff] [blame] | 174 | test_conformance.target = 'test_python_cpp' |
Josh Haberman | d8814ed | 2015-10-07 11:46:23 -0700 | [diff] [blame] | 175 | |
Paul Yang | c931743 | 2018-04-02 15:55:28 -0700 | [diff] [blame] | 176 | extra_compile_args = [] |
| 177 | |
| 178 | if sys.platform != 'win32': |
| 179 | extra_compile_args.append('-Wno-write-strings') |
| 180 | extra_compile_args.append('-Wno-invalid-offsetof') |
| 181 | extra_compile_args.append('-Wno-sign-compare') |
Feng Xiao | acd5b05 | 2018-08-09 21:21:01 -0700 | [diff] [blame] | 182 | extra_compile_args.append('-Wno-unused-variable') |
Arun Olappamanna Vasudevan | c7e0e26 | 2018-07-23 13:35:15 -0700 | [diff] [blame] | 183 | extra_compile_args.append('-std=c++11') |
Paul Yang | c931743 | 2018-04-02 15:55:28 -0700 | [diff] [blame] | 184 | |
Feng Xiao | acd5b05 | 2018-08-09 21:21:01 -0700 | [diff] [blame] | 185 | if sys.platform == 'darwin': |
| 186 | extra_compile_args.append("-Wno-shorten-64-to-32"); |
| 187 | |
Paul Yang | c931743 | 2018-04-02 15:55:28 -0700 | [diff] [blame] | 188 | # https://github.com/Theano/Theano/issues/4926 |
| 189 | if sys.platform == 'win32': |
| 190 | extra_compile_args.append('-D_hypot=hypot') |
| 191 | |
| 192 | # https://github.com/tpaviot/pythonocc-core/issues/48 |
| 193 | if sys.platform == 'win32' and '64 bit' in sys.version: |
| 194 | extra_compile_args.append('-DMS_WIN64') |
| 195 | |
| 196 | # MSVS default is dymanic |
Paul Yang | 3b6d027 | 2018-04-06 15:43:32 -0700 | [diff] [blame] | 197 | if (sys.platform == 'win32'): |
Paul Yang | c931743 | 2018-04-02 15:55:28 -0700 | [diff] [blame] | 198 | extra_compile_args.append('/MT') |
| 199 | |
Josh Haberman | e1abdf2 | 2015-12-22 11:13:03 -0800 | [diff] [blame] | 200 | if "clang" in os.popen('$CC --version 2> /dev/null').read(): |
Josh Haberman | d8814ed | 2015-10-07 11:46:23 -0700 | [diff] [blame] | 201 | extra_compile_args.append('-Wno-shorten-64-to-32') |
Josh Haberman | 00700b7 | 2015-10-06 14:13:09 -0700 | [diff] [blame] | 202 | |
| 203 | if warnings_as_errors in sys.argv: |
| 204 | extra_compile_args.append('-Werror') |
| 205 | sys.argv.remove(warnings_as_errors) |
| 206 | |
jieluo@google.com | 1eba9d9 | 2014-08-25 20:17:53 +0000 | [diff] [blame] | 207 | # C++ implementation extension |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 208 | ext_module_list.extend([ |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 209 | Extension( |
| 210 | "google.protobuf.pyext._message", |
Tamir Duberstein | 5018c43 | 2015-05-08 08:48:40 -0400 | [diff] [blame] | 211 | glob.glob('google/protobuf/pyext/*.cc'), |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 212 | include_dirs=[".", "../src"], |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 213 | libraries=libraries, |
| 214 | extra_objects=extra_objects, |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 215 | library_dirs=['../src/.libs'], |
Josh Haberman | 00700b7 | 2015-10-06 14:13:09 -0700 | [diff] [blame] | 216 | extra_compile_args=extra_compile_args, |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 217 | ), |
| 218 | Extension( |
| 219 | "google.protobuf.internal._api_implementation", |
| 220 | glob.glob('google/protobuf/internal/api_implementation.cc'), |
Paul Yang | c931743 | 2018-04-02 15:55:28 -0700 | [diff] [blame] | 221 | extra_compile_args=extra_compile_args + ['-DPYTHON_PROTO2_CPP_IMPL_V2'], |
Manjunath Kudlur | cf828de | 2016-03-25 10:58:46 -0700 | [diff] [blame] | 222 | ), |
| 223 | ]) |
Jisi Liu | ada6556 | 2015-02-25 16:39:11 -0800 | [diff] [blame] | 224 | os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp' |
liujisi@google.com | 33165fe | 2010-11-02 13:14:58 +0000 | [diff] [blame] | 225 | |
Dan O'Reilly | 3791c80 | 2015-08-20 20:49:45 -0400 | [diff] [blame] | 226 | # Keep this list of dependencies in sync with tox.ini. |
Feng Xiao | 283c40c | 2015-12-29 14:36:46 -0800 | [diff] [blame] | 227 | install_requires = ['six>=1.9', 'setuptools'] |
Dan O'Reilly | 2621c8a | 2015-08-14 22:54:53 -0400 | [diff] [blame] | 228 | if sys.version_info <= (2,7): |
| 229 | install_requires.append('ordereddict') |
| 230 | install_requires.append('unittest2') |
| 231 | |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 232 | setup( |
| 233 | name='protobuf', |
| 234 | version=GetVersion(), |
| 235 | description='Protocol Buffers', |
Feng Xiao | afe98de | 2018-08-22 11:55:30 -0700 | [diff] [blame] | 236 | download_url='https://github.com/protocolbuffers/protobuf/releases', |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 237 | long_description="Protocol Buffers are Google's data interchange format", |
| 238 | url='https://developers.google.com/protocol-buffers/', |
| 239 | maintainer='protobuf@googlegroups.com', |
| 240 | maintainer_email='protobuf@googlegroups.com', |
Sebastian Schuberth | 902af08 | 2017-02-28 09:58:24 +0100 | [diff] [blame] | 241 | license='3-Clause BSD License', |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 242 | classifiers=[ |
Dan O'Reilly | e47cdd5 | 2015-08-12 23:57:46 -0400 | [diff] [blame] | 243 | "Programming Language :: Python", |
| 244 | "Programming Language :: Python :: 2", |
Dan O'Reilly | e47cdd5 | 2015-08-12 23:57:46 -0400 | [diff] [blame] | 245 | "Programming Language :: Python :: 2.7", |
| 246 | "Programming Language :: Python :: 3", |
| 247 | "Programming Language :: Python :: 3.3", |
| 248 | "Programming Language :: Python :: 3.4", |
| 249 | ], |
Craig Citro | 0e7c0c2 | 2016-03-04 20:40:24 -0800 | [diff] [blame] | 250 | namespace_packages=['google'], |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 251 | packages=find_packages( |
| 252 | exclude=[ |
| 253 | 'import_test_package', |
| 254 | ], |
| 255 | ), |
| 256 | test_suite='google.protobuf.internal', |
| 257 | cmdclass={ |
| 258 | 'clean': clean, |
| 259 | 'build_py': build_py, |
Josh Haberman | 325392d | 2015-08-17 12:30:49 -0700 | [diff] [blame] | 260 | 'test_conformance': test_conformance, |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 261 | }, |
Dan O'Reilly | 2621c8a | 2015-08-14 22:54:53 -0400 | [diff] [blame] | 262 | install_requires=install_requires, |
Tamir Duberstein | 21a7cf9 | 2015-04-11 18:24:24 -0700 | [diff] [blame] | 263 | ext_modules=ext_module_list, |
| 264 | ) |