I want to make my python code pip-able. However, my code depends on another library which isn't pip-able. So, somehow I need to compile the source code when a user calls pip install
.
How can I do that? I haven't been able to find a good reference via simple Google searches.