[docs]defget_include():""" Returns a list of header include paths (for lxml itself, libxml2 and libxslt) needed to compile C code against lxml if it was built with statically linked libraries. """importoslxml_path=__path__[0]include_path=os.path.join(lxml_path,'includes')includes=[include_path,lxml_path]fornameinos.listdir(include_path):path=os.path.join(include_path,name)ifos.path.isdir(path):includes.append(path)returnincludes