# Description: # Build rule for Python and Numpy. # This rule works for Debian and Ubuntu. Other platforms might keep the # headers in different places. cc_library( name = "python_headers", hdrs = glob([ "include/python3.7m/*.h", #"lib/python3.7/site-packages/numpy/core/include/numpy/*.h", ]), includes = [ "include/python3.7m", #"lib/python3.7/site-packages/numpy/core/include/numpy/*.h", ], visibility = ["//visibility:public"], )