Files
pycapnp/setup.py
Jason Paryani 40a16470cf Change library to use dynamic API of capnproto.
Currently only get is working on DynamicStructReader, but
the mechanics are mostly there.
2013-06-26 23:01:37 -07:00

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'),
)