Currently only get is working on DynamicStructReader, but the mechanics are mostly there.
7 lines
160 B
Python
7 lines
160 B
Python
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
from Cython.Build import cythonize
|
|
setup(
|
|
name = "capnp",
|
|
ext_modules = cythonize('capnp.pyx'),
|
|
) |