You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
4.4 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: ipython
  3. Version: 7.1.1
  4. Summary: IPython: Productive Interactive Computing
  5. Home-page: https://ipython.org
  6. Author: The IPython Development Team
  7. Author-email: ipython-dev@python.org
  8. License: BSD
  9. Project-URL: Documentation, https://ipython.readthedocs.io/
  10. Project-URL: Funding, https://numfocus.org/
  11. Project-URL: Source, https://github.com/ipython/ipython
  12. Project-URL: Tracker, https://github.com/ipython/ipython/issues
  13. Keywords: Interactive,Interpreter,Shell,Embedding
  14. Platform: Linux
  15. Platform: Mac OSX
  16. Platform: Windows
  17. Classifier: Framework :: IPython
  18. Classifier: Intended Audience :: Developers
  19. Classifier: Intended Audience :: Science/Research
  20. Classifier: License :: OSI Approved :: BSD License
  21. Classifier: Programming Language :: Python
  22. Classifier: Programming Language :: Python :: 3
  23. Classifier: Programming Language :: Python :: 3 :: Only
  24. Classifier: Topic :: System :: Shells
  25. Requires-Python: >=3.5
  26. Provides-Extra: test
  27. Provides-Extra: nbformat
  28. Provides-Extra: doc
  29. Provides-Extra: parallel
  30. Provides-Extra: terminal
  31. Provides-Extra: all
  32. Provides-Extra: nbconvert
  33. Provides-Extra: qtconsole
  34. Provides-Extra: kernel
  35. Provides-Extra: notebook
  36. Requires-Dist: setuptools (>=18.5)
  37. Requires-Dist: jedi (>=0.10)
  38. Requires-Dist: decorator
  39. Requires-Dist: pickleshare
  40. Requires-Dist: traitlets (>=4.2)
  41. Requires-Dist: prompt-toolkit (<2.1.0,>=2.0.0)
  42. Requires-Dist: pygments
  43. Requires-Dist: backcall
  44. Requires-Dist: typing; python_version == "3.4"
  45. Requires-Dist: pexpect; sys_platform != "win32"
  46. Requires-Dist: appnope; sys_platform == "darwin"
  47. Requires-Dist: colorama; sys_platform == "win32"
  48. Requires-Dist: win-unicode-console (>=0.5); sys_platform == "win32" and python_version < "3.6"
  49. Provides-Extra: all
  50. Requires-Dist: pygments; extra == 'all'
  51. Requires-Dist: ipyparallel; extra == 'all'
  52. Requires-Dist: requests; extra == 'all'
  53. Requires-Dist: testpath; extra == 'all'
  54. Requires-Dist: Sphinx (>=1.3); extra == 'all'
  55. Requires-Dist: ipywidgets; extra == 'all'
  56. Requires-Dist: numpy; extra == 'all'
  57. Requires-Dist: nbconvert; extra == 'all'
  58. Requires-Dist: ipykernel; extra == 'all'
  59. Requires-Dist: nose (>=0.10.1); extra == 'all'
  60. Requires-Dist: qtconsole; extra == 'all'
  61. Requires-Dist: nbformat; extra == 'all'
  62. Requires-Dist: notebook; extra == 'all'
  63. Provides-Extra: doc
  64. Requires-Dist: Sphinx (>=1.3); extra == 'doc'
  65. Provides-Extra: kernel
  66. Requires-Dist: ipykernel; extra == 'kernel'
  67. Provides-Extra: nbconvert
  68. Requires-Dist: nbconvert; extra == 'nbconvert'
  69. Provides-Extra: nbformat
  70. Requires-Dist: nbformat; extra == 'nbformat'
  71. Provides-Extra: notebook
  72. Requires-Dist: notebook; extra == 'notebook'
  73. Requires-Dist: ipywidgets; extra == 'notebook'
  74. Provides-Extra: parallel
  75. Requires-Dist: ipyparallel; extra == 'parallel'
  76. Provides-Extra: qtconsole
  77. Requires-Dist: qtconsole; extra == 'qtconsole'
  78. Provides-Extra: terminal
  79. Provides-Extra: test
  80. Requires-Dist: nose (>=0.10.1); extra == 'test'
  81. Requires-Dist: requests; extra == 'test'
  82. Requires-Dist: testpath; extra == 'test'
  83. Requires-Dist: pygments; extra == 'test'
  84. Requires-Dist: nbformat; extra == 'test'
  85. Requires-Dist: ipykernel; extra == 'test'
  86. Requires-Dist: numpy; extra == 'test'
  87. IPython provides a rich toolkit to help you make the most out of using Python
  88. interactively. Its main components are:
  89. * A powerful interactive Python shell
  90. * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
  91. notebooks and other interactive frontends.
  92. The enhanced interactive Python shells have the following main features:
  93. * Comprehensive object introspection.
  94. * Input history, persistent across sessions.
  95. * Caching of output results during a session with automatically generated
  96. references.
  97. * Extensible tab completion, with support by default for completion of python
  98. variables and keywords, filenames and function keywords.
  99. * Extensible system of 'magic' commands for controlling the environment and
  100. performing many tasks related either to IPython or the operating system.
  101. * A rich configuration system with easy switching between different setups
  102. (simpler than changing $PYTHONSTARTUP environment variables every time).
  103. * Session logging and reloading.
  104. * Extensible syntax processing for special purpose situations.
  105. * Access to the system shell with user-extensible alias system.
  106. * Easily embeddable in other Python programs and GUIs.
  107. * Integrated access to the pdb debugger and the Python profiler.
  108. The latest development version is always available from IPython's `GitHub
  109. site <http://github.com/ipython>`_.