In my setup.py file, I\'ve specified a few libraries needed to run my project:
setup.py
setup( # ... install_requires = [ \'django-pipeline\'
I'm not sure about buildout, however, for setuptools/distribute, you specify version info with the comparison operators (like ==, >=, or <=).
==
>=
<=
For example:
install_requires = ['django-pipeline==1.1.22', 'south>=0.7']