I have a .mat file in my package that I want to be including when I build the package. I do this with
data_files=[('utide', ['utide/ut_constants.mat'])],
This builds just fine. The question I then have is, when I try to load in the mat file with scipy IO, I have no idea where this file is located, and how I should code it in to be proper. Do I just find the files buildpath and hard code it in? Or is there some more pythonic way to do this?
For anyone interested, the code can be found here.