pip_show.rst 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .. _`pip show`:
  2. pip show
  3. --------
  4. .. contents::
  5. Usage
  6. *****
  7. .. pip-command-usage:: show
  8. Description
  9. ***********
  10. .. pip-command-description:: show
  11. Options
  12. *******
  13. .. pip-command-options:: show
  14. Examples
  15. ********
  16. #. Show information about a package:
  17. ::
  18. $ pip show sphinx
  19. Name: Sphinx
  20. Version: 1.4.5
  21. Summary: Python documentation generator
  22. Home-page: http://sphinx-doc.org/
  23. Author: Georg Brandl
  24. Author-email: georg@python.org
  25. License: BSD
  26. Location: /my/env/lib/python2.7/site-packages
  27. Requires: docutils, snowballstemmer, alabaster, Pygments, imagesize, Jinja2, babel, six
  28. #. Show all information about a package
  29. ::
  30. $ pip show --verbose sphinx
  31. Name: Sphinx
  32. Version: 1.4.5
  33. Summary: Python documentation generator
  34. Home-page: http://sphinx-doc.org/
  35. Author: Georg Brandl
  36. Author-email: georg@python.org
  37. License: BSD
  38. Location: /my/env/lib/python2.7/site-packages
  39. Requires: docutils, snowballstemmer, alabaster, Pygments, imagesize, Jinja2, babel, six
  40. Metadata-Version: 2.0
  41. Installer:
  42. Classifiers:
  43. Development Status :: 5 - Production/Stable
  44. Environment :: Console
  45. Environment :: Web Environment
  46. Intended Audience :: Developers
  47. Intended Audience :: Education
  48. License :: OSI Approved :: BSD License
  49. Operating System :: OS Independent
  50. Programming Language :: Python
  51. Programming Language :: Python :: 2
  52. Programming Language :: Python :: 3
  53. Framework :: Sphinx
  54. Framework :: Sphinx :: Extension
  55. Framework :: Sphinx :: Theme
  56. Topic :: Documentation
  57. Topic :: Documentation :: Sphinx
  58. Topic :: Text Processing
  59. Topic :: Utilities
  60. Entry-points:
  61. [console_scripts]
  62. sphinx-apidoc = sphinx.apidoc:main
  63. sphinx-autogen = sphinx.ext.autosummary.generate:main
  64. sphinx-build = sphinx:main
  65. sphinx-quickstart = sphinx.quickstart:main
  66. [distutils.commands]
  67. build_sphinx = sphinx.setup_command:BuildDoc