Please classify.
Problem:
python setup.py build complains about not finding Python.h
but locate finds Python.h
$ locate Python.h
/usr/include/python2.6/Python.h
solution is to use get_python_inc() function :
from distutils.sysconfig import get_python_inc
....
include_dirs=[cci_inc_dir, get_python_inc()]