What are the generic steps you need to follow to add a pypi package as a ST dependency?
Asking this cos yesterday I was trying to use html5print in one Sublime plugin so the first idea was just copying html5print\html5print folder directly into my plugin folder to see whether that’d work out of the box… unfortunately it didn’t, one dependency would be missing… so i tried to solve that missing dependency error by repeating the procedure, so I’ve cloned the github repo of this missing dependency and manually but then a new dependency would miss again, and so on… Didn’t take me time to know this method was error proof and a total wrong way to use pypi packages on ST.
I mean, the above method would be good enough if the package is just flat and self-contained but it will fail miserably if it has several recursive dependencies.
So my question is, assuming you’ve got an existing system-wide python3.3 where you’ve installed and tested succesfully through pip a package… how would you use that same package in SublimeText?