Skip to content

Instantly share code, notes, and snippets.

View indigoviolet's full-sized avatar
🐈

Venky Iyer indigoviolet

🐈
View GitHub Profile
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import os
cfiles = filter(None, [c.strip() for c in """
src/analyze-linkage.c
src/and.c
src/api.c
src/build-disjuncts.c
cimport stdlib
cdef extern from "link-includes.h":
pass
cdef extern from "api-structures.h":
ctypedef struct Parse_Options_s:
pass
ctypedef struct Dictionary_s: