Managing Python application dependencies

OpenShift gives the Python developer two options to specify their application dependencies. You can specify application dependencies either in the install_requires element in setup.py, in requirements.txt, or both. When dependencies are specified in both the setup.py and requirements.txt files, OpenShift will install all the libraries mentioned in both the files. The setup.py file is required when you want to distribute your library as a package that others can use. All the packages listed on PyPi need to have the setup.py script in their root directory. As you do not want to distribute your web applications as a package, there is no need to use the setup.py file. I recommend that you use requirements.txt ...

Get OpenShift Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.