Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
383 B
15 lines
383 B
16 years ago
|
from distutils.core import setup, Extension
|
||
15 years ago
|
|
||
16 years ago
|
setup(name='upb',
|
||
|
version='0.1',
|
||
15 years ago
|
ext_modules=[
|
||
14 years ago
|
Extension('upb.__init__', ['upb.c'],
|
||
|
include_dirs=['../../'],
|
||
|
define_macros=[("UPB_UNALIGNED_READS_OK", 1)],
|
||
|
library_dirs=['../../upb'],
|
||
15 years ago
|
libraries=['upb_pic'],
|
||
|
),
|
||
|
],
|
||
|
packages=['upb']
|
||
16 years ago
|
)
|