Fixed up setup process, cleaned up repo, and updated README

This commit is contained in:
Jason Paryani
2013-07-06 23:41:19 -07:00
parent b2aa5e8019
commit 0ed0bcf361
15 changed files with 68693 additions and 348 deletions

9
capnp/schema.pxd Normal file
View File

@@ -0,0 +1,9 @@
# schema.capnp.cpp.pyx
# distutils: language = c++
# distutils: extra_compile_args = --std=c++11
# distutils: libraries = capnp
from schema_cpp cimport Node as C_Node
cdef class _NodeReader:
cdef C_Node.Reader thisptr
cdef init(self, C_Node.Reader other)