It takes .capnp file and will load it through the C++ capnproto library. Only major thing left is initializing lists and structs in MessageBuilder
8 lines
157 B
Python
8 lines
157 B
Python
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
setup(
|
|
name = "capnp",
|
|
ext_modules = cythonize('*.pyx'),
|
|
)
|