README.rst 694 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ========================
  2. pip requirements files
  3. ========================
  4. Index
  5. =====
  6. * `requirements/default.txt`
  7. The default requirements (Python 2.6+).
  8. * `requirements/py25.txt`
  9. Extra requirements needed to run on Python 2.5.
  10. * `requirements/py26.txt`
  11. Extra requirements needed to run on Python 2.6.
  12. * `requirements/test.txt`
  13. Requirements needed to run the full unittest suite.
  14. Examples
  15. ========
  16. Running the tests using Python 2.5
  17. ----------------------------------
  18. ::
  19. $ pip -E $VIRTUAL_ENV install -U -r requirements/py25.txt
  20. $ pip -E $VIRTUAL_ENV install -U -r requirements/default.txt
  21. $ pip -E $VIRTUAL_ENV install -U -r requirements/test.txt