~ubuntu-branches/debian/stretch/protobuf/stretch

« back to all changes in this revision

Viewing changes to python/setup.py

  • Committer: Package Import Robot
  • Author(s): Robert Edmonds
  • Date: 2014-10-24 13:55:53 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20141024135553-co7z8i7m8ymu8bgy
Tags: 2.6.1-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
        ))
147
147
 
148
148
  setup(name = 'protobuf',
149
 
        version = '2.6.0',
 
149
        version = '2.6.1',
150
150
        packages = [ 'google' ],
151
151
        namespace_packages = [ 'google' ],
152
152
        test_suite = 'setup.MakeTestSuite',
170
170
          'google.protobuf.descriptor_database',
171
171
          'google.protobuf.descriptor_pool',
172
172
          'google.protobuf.message_factory',
 
173
          'google.protobuf.pyext.cpp_message',
173
174
          'google.protobuf.reflection',
174
175
          'google.protobuf.service',
175
176
          'google.protobuf.service_reflection',
180
181
        install_requires = ['setuptools'],
181
182
        setup_requires = ['google-apputils'],
182
183
        ext_modules = ext_module_list,
183
 
        url = 'http://code.google.com/p/protobuf/',
 
184
        url = 'https://developers.google.com/protocol-buffers/',
184
185
        maintainer = maintainer_email,
185
186
        maintainer_email = 'protobuf@googlegroups.com',
186
187
        license = 'New BSD License',