setup.py 9.84 KB
Newer Older
1
#! /usr/bin/env python
temporal's avatar
temporal committed
2 3
#
# See README for usage instructions.
4
import glob
5 6
import os
import subprocess
7
import sys
temporal's avatar
temporal committed
8 9 10

# We must use setuptools, not distutils, because we need to use the
# namespace_packages option for the "google" package.
11
from setuptools import setup, Extension, find_packages
12

13
from distutils.command.clean import clean as _clean
14 15 16 17

if sys.version_info[0] == 3:
  # Python 3
  from distutils.command.build_py import build_py_2to3 as _build_py
18
else:
19 20
  # Python 2
  from distutils.command.build_py import build_py as _build_py
temporal's avatar
temporal committed
21 22 23
from distutils.spawn import find_executable

# Find the Protocol Compiler.
24 25 26
if 'PROTOC' in os.environ and os.path.exists(os.environ['PROTOC']):
  protoc = os.environ['PROTOC']
elif os.path.exists("../src/protoc"):
temporal's avatar
temporal committed
27
  protoc = "../src/protoc"
28 29
elif os.path.exists("../src/protoc.exe"):
  protoc = "../src/protoc.exe"
30 31 32 33
elif os.path.exists("../vsprojects/Debug/protoc.exe"):
  protoc = "../vsprojects/Debug/protoc.exe"
elif os.path.exists("../vsprojects/Release/protoc.exe"):
  protoc = "../vsprojects/Release/protoc.exe"
temporal's avatar
temporal committed
34 35 36
else:
  protoc = find_executable("protoc")

37

38 39 40
def GetVersion():
  """Gets the version from google/protobuf/__init__.py

41 42
  Do not import google.protobuf.__init__ directly, because an installed
  protobuf library may be loaded instead."""
43 44

  with open(os.path.join('google', 'protobuf', '__init__.py')) as version_file:
Behzad Tabibian's avatar
Behzad Tabibian committed
45
    exec(version_file.read(), globals())
46 47 48
    return __version__


49
def generate_proto(source, require = True):
temporal's avatar
temporal committed
50 51 52 53
  """Invokes the Protocol Compiler to generate a _pb2.py from the given
  .proto file.  Does nothing if the output already exists and is newer than
  the input."""

54 55 56
  if not require and not os.path.exists(source):
    return

temporal's avatar
temporal committed
57 58 59 60 61
  output = source.replace(".proto", "_pb2.py").replace("../src/", "")

  if (not os.path.exists(output) or
      (os.path.exists(source) and
       os.path.getmtime(source) > os.path.getmtime(output))):
62
    print("Generating %s..." % output)
temporal's avatar
temporal committed
63

64 65 66 67
    if not os.path.exists(source):
      sys.stderr.write("Can't find required file: %s\n" % source)
      sys.exit(-1)

68
    if protoc is None:
temporal's avatar
temporal committed
69 70 71 72 73
      sys.stderr.write(
          "protoc is not installed nor found in ../src.  Please compile it "
          "or install the binary package.\n")
      sys.exit(-1)

74 75
    protoc_command = [ protoc, "-I../src", "-I.", "--python_out=.", source ]
    if subprocess.call(protoc_command) != 0:
temporal's avatar
temporal committed
76 77
      sys.exit(-1)

78
def GenerateUnittestProtos():
79
  generate_proto("../src/google/protobuf/map_unittest.proto", False)
80 81 82
  generate_proto("../src/google/protobuf/unittest_arena.proto", False)
  generate_proto("../src/google/protobuf/unittest_no_arena.proto", False)
  generate_proto("../src/google/protobuf/unittest_no_arena_import.proto", False)
83 84 85 86 87
  generate_proto("../src/google/protobuf/unittest.proto", False)
  generate_proto("../src/google/protobuf/unittest_custom_options.proto", False)
  generate_proto("../src/google/protobuf/unittest_import.proto", False)
  generate_proto("../src/google/protobuf/unittest_import_public.proto", False)
  generate_proto("../src/google/protobuf/unittest_mset.proto", False)
88
  generate_proto("../src/google/protobuf/unittest_mset_wire_format.proto", False)
89 90
  generate_proto("../src/google/protobuf/unittest_no_generic_services.proto", False)
  generate_proto("../src/google/protobuf/unittest_proto3_arena.proto", False)
91
  generate_proto("../src/google/protobuf/util/json_format_proto3.proto", False)
92
  generate_proto("google/protobuf/internal/any_test.proto", False)
93 94 95 96 97 98 99
  generate_proto("google/protobuf/internal/descriptor_pool_test1.proto", False)
  generate_proto("google/protobuf/internal/descriptor_pool_test2.proto", False)
  generate_proto("google/protobuf/internal/factory_test1.proto", False)
  generate_proto("google/protobuf/internal/factory_test2.proto", False)
  generate_proto("google/protobuf/internal/import_test_package/inner.proto", False)
  generate_proto("google/protobuf/internal/import_test_package/outer.proto", False)
  generate_proto("google/protobuf/internal/missing_enum_values.proto", False)
100
  generate_proto("google/protobuf/internal/message_set_extensions.proto", False)
101 102 103
  generate_proto("google/protobuf/internal/more_extensions.proto", False)
  generate_proto("google/protobuf/internal/more_extensions_dynamic.proto", False)
  generate_proto("google/protobuf/internal/more_messages.proto", False)
104
  generate_proto("google/protobuf/internal/packed_field_test.proto", False)
105 106
  generate_proto("google/protobuf/internal/test_bad_identifiers.proto", False)
  generate_proto("google/protobuf/pyext/python.proto", False)
107

108

109 110 111
class clean(_clean):
  def run(self):
    # Delete generated files in the code tree.
temporal's avatar
temporal committed
112 113 114
    for (dirpath, dirnames, filenames) in os.walk("."):
      for filename in filenames:
        filepath = os.path.join(dirpath, filename)
115
        if filepath.endswith("_pb2.py") or filepath.endswith(".pyc") or \
116
          filepath.endswith(".so") or filepath.endswith(".o") or \
117 118
          filepath.endswith('google/protobuf/compiler/__init__.py') or \
          filepath.endswith('google/protobuf/util/__init__.py'):
temporal's avatar
temporal committed
119
          os.remove(filepath)
120 121 122 123 124
    # _clean is an old-style class, so super() doesn't work.
    _clean.run(self)

class build_py(_build_py):
  def run(self):
temporal's avatar
temporal committed
125 126
    # Generate necessary .proto file if it doesn't exist.
    generate_proto("../src/google/protobuf/descriptor.proto")
127
    generate_proto("../src/google/protobuf/compiler/plugin.proto")
128
    generate_proto("../src/google/protobuf/any.proto")
129 130 131
    generate_proto("../src/google/protobuf/api.proto")
    generate_proto("../src/google/protobuf/duration.proto")
    generate_proto("../src/google/protobuf/empty.proto")
132
    generate_proto("../src/google/protobuf/field_mask.proto")
133 134 135 136 137
    generate_proto("../src/google/protobuf/source_context.proto")
    generate_proto("../src/google/protobuf/struct.proto")
    generate_proto("../src/google/protobuf/timestamp.proto")
    generate_proto("../src/google/protobuf/type.proto")
    generate_proto("../src/google/protobuf/wrappers.proto")
138 139 140
    GenerateUnittestProtos()

    # Make sure google.protobuf/** are valid packages.
141
    for path in ['', 'internal/', 'compiler/', 'pyext/', 'util/']:
142 143 144 145
      try:
        open('google/protobuf/%s__init__.py' % path, 'a').close()
      except EnvironmentError:
        pass
146 147
    # _build_py is an old-style class, so super() doesn't work.
    _build_py.run(self)
148

149 150 151
class test_conformance(_build_py):
  target = 'test_python'
  def run(self):
152 153 154 155
    if sys.version_info >= (2, 7):
      # Python 2.6 dodges these extra failures.
      os.environ["CONFORMANCE_PYTHON_EXTRA_FAILURES"] = (
          "--failure_list failure_list_python-post26.txt")
156 157
    cmd = 'cd ../conformance && make %s' % (test_conformance.target)
    status = subprocess.check_call(cmd, shell=True)
158

159

160 161 162 163 164 165 166
def get_option_from_sys_argv(option_str):
  if option_str in sys.argv:
    sys.argv.remove(option_str)
    return True
  return False


167
if __name__ == '__main__':
168
  ext_module_list = []
169
  warnings_as_errors = '--warnings_as_errors'
170 171 172 173 174
  if get_option_from_sys_argv('--cpp_implementation'):
    # Link libprotobuf.a and libprotobuf-lite.a statically with the
    # extension. Note that those libraries have to be compiled with
    # -fPIC for this to work.
    compile_static_ext = get_option_from_sys_argv('--compile_static_extension')
175 176 177
    extra_compile_args = ['-Wno-write-strings',
                          '-Wno-invalid-offsetof',
                          '-Wno-sign-compare']
178 179 180 181 182 183
    libraries = ['protobuf']
    extra_objects = None
    if compile_static_ext:
      libraries = None
      extra_objects = ['../src/.libs/libprotobuf.a',
                       '../src/.libs/libprotobuf-lite.a']
184
    test_conformance.target = 'test_python_cpp'
185

186
    if "clang" in os.popen('$CC --version 2> /dev/null').read():
187
      extra_compile_args.append('-Wno-shorten-64-to-32')
188 189 190 191 192

    if warnings_as_errors in sys.argv:
      extra_compile_args.append('-Werror')
      sys.argv.remove(warnings_as_errors)

193
    # C++ implementation extension
194
    ext_module_list.extend([
195 196
        Extension(
            "google.protobuf.pyext._message",
197
            glob.glob('google/protobuf/pyext/*.cc'),
198
            include_dirs=[".", "../src"],
199 200
            libraries=libraries,
            extra_objects=extra_objects,
201
            library_dirs=['../src/.libs'],
202
            extra_compile_args=extra_compile_args,
203 204 205 206 207 208 209
        ),
        Extension(
            "google.protobuf.internal._api_implementation",
            glob.glob('google/protobuf/internal/api_implementation.cc'),
            extra_compile_args=['-DPYTHON_PROTO2_CPP_IMPL_V2'],
        ),
    ])
210
    os.environ['PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION'] = 'cpp'
211

Dan O'Reilly's avatar
Dan O'Reilly committed
212
  # Keep this list of dependencies in sync with tox.ini.
213
  install_requires = ['six>=1.9', 'setuptools']
Dan O'Reilly's avatar
Dan O'Reilly committed
214 215 216 217
  if sys.version_info <= (2,7):
    install_requires.append('ordereddict')
    install_requires.append('unittest2')

218 219 220 221
  setup(
      name='protobuf',
      version=GetVersion(),
      description='Protocol Buffers',
222
      download_url='https://github.com/google/protobuf/releases',
223 224 225 226 227 228
      long_description="Protocol Buffers are Google's data interchange format",
      url='https://developers.google.com/protocol-buffers/',
      maintainer='protobuf@googlegroups.com',
      maintainer_email='protobuf@googlegroups.com',
      license='New BSD License',
      classifiers=[
229 230 231 232 233 234 235 236
        "Programming Language :: Python",
        "Programming Language :: Python :: 2",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        ],
237
      namespace_packages=['google'],
238 239 240 241 242 243 244 245 246
      packages=find_packages(
          exclude=[
              'import_test_package',
          ],
      ),
      test_suite='google.protobuf.internal',
      cmdclass={
          'clean': clean,
          'build_py': build_py,
247
          'test_conformance': test_conformance,
248
      },
Dan O'Reilly's avatar
Dan O'Reilly committed
249
      install_requires=install_requires,
250 251
      ext_modules=ext_module_list,
  )