So I have a ruby sinatra program that runs on a server and I have a Gem file to ensure all its dependancies are installed. However it calls a python script which has its own python module dependancies. Thus when it deploy to server all the ruby gems dependancies are fine but not they python dependancies.
Is there a python equivalent of a Gem file? Or is there a way for me to install the python modules via the Gem file?
buildr has been suggested to me but that seems to be for a java based program.
Any help would be much appreciated.