METADATA 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. Metadata-Version: 2.1
  2. Name: ipython
  3. Version: 8.26.0
  4. Summary: IPython: Productive Interactive Computing
  5. Author: The IPython Development Team
  6. Author-email: ipython-dev@python.org
  7. License: BSD-3-Clause
  8. Project-URL: Homepage, https://ipython.org
  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: Framework :: Jupyter
  19. Classifier: Intended Audience :: Developers
  20. Classifier: Intended Audience :: Science/Research
  21. Classifier: License :: OSI Approved :: BSD License
  22. Classifier: Programming Language :: Python
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Programming Language :: Python :: 3 :: Only
  25. Classifier: Topic :: System :: Shells
  26. Requires-Python: >=3.10
  27. Description-Content-Type: text/x-rst
  28. License-File: LICENSE
  29. Requires-Dist: decorator
  30. Requires-Dist: jedi >=0.13
  31. Requires-Dist: matplotlib-inline
  32. Requires-Dist: prompt-toolkit <3.1.0,>=3.0.41
  33. Requires-Dist: pygments >=2.4.0
  34. Requires-Dist: stack-data
  35. Requires-Dist: traitlets >=5.13.0
  36. Requires-Dist: exceptiongroup ; python_version < "3.11"
  37. Requires-Dist: typing-extensions >=4.6 ; python_version < "3.12"
  38. Requires-Dist: pexpect >4.3 ; sys_platform != "win32" and sys_platform != "emscripten"
  39. Requires-Dist: colorama ; sys_platform == "win32"
  40. Provides-Extra: all
  41. Requires-Dist: ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole] ; extra == 'all'
  42. Requires-Dist: ipython[test,test_extra] ; extra == 'all'
  43. Provides-Extra: black
  44. Requires-Dist: black ; extra == 'black'
  45. Provides-Extra: doc
  46. Requires-Dist: docrepr ; extra == 'doc'
  47. Requires-Dist: exceptiongroup ; extra == 'doc'
  48. Requires-Dist: intersphinx-registry ; extra == 'doc'
  49. Requires-Dist: ipykernel ; extra == 'doc'
  50. Requires-Dist: ipython[test] ; extra == 'doc'
  51. Requires-Dist: matplotlib ; extra == 'doc'
  52. Requires-Dist: setuptools >=18.5 ; extra == 'doc'
  53. Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
  54. Requires-Dist: sphinx >=1.3 ; extra == 'doc'
  55. Requires-Dist: sphinxcontrib-jquery ; extra == 'doc'
  56. Requires-Dist: typing-extensions ; extra == 'doc'
  57. Requires-Dist: tomli ; (python_version < "3.11") and extra == 'doc'
  58. Provides-Extra: kernel
  59. Requires-Dist: ipykernel ; extra == 'kernel'
  60. Provides-Extra: matplotlib
  61. Requires-Dist: matplotlib ; extra == 'matplotlib'
  62. Provides-Extra: nbconvert
  63. Requires-Dist: nbconvert ; extra == 'nbconvert'
  64. Provides-Extra: nbformat
  65. Requires-Dist: nbformat ; extra == 'nbformat'
  66. Provides-Extra: notebook
  67. Requires-Dist: ipywidgets ; extra == 'notebook'
  68. Requires-Dist: notebook ; extra == 'notebook'
  69. Provides-Extra: parallel
  70. Requires-Dist: ipyparallel ; extra == 'parallel'
  71. Provides-Extra: qtconsole
  72. Requires-Dist: qtconsole ; extra == 'qtconsole'
  73. Provides-Extra: terminal
  74. Provides-Extra: test
  75. Requires-Dist: pytest ; extra == 'test'
  76. Requires-Dist: pytest-asyncio <0.22 ; extra == 'test'
  77. Requires-Dist: testpath ; extra == 'test'
  78. Requires-Dist: pickleshare ; extra == 'test'
  79. Requires-Dist: packaging ; extra == 'test'
  80. Provides-Extra: test_extra
  81. Requires-Dist: ipython[test] ; extra == 'test_extra'
  82. Requires-Dist: curio ; extra == 'test_extra'
  83. Requires-Dist: matplotlib !=3.2.0 ; extra == 'test_extra'
  84. Requires-Dist: nbformat ; extra == 'test_extra'
  85. Requires-Dist: numpy >=1.23 ; extra == 'test_extra'
  86. Requires-Dist: pandas ; extra == 'test_extra'
  87. Requires-Dist: trio ; extra == 'test_extra'
  88. IPython provides a rich toolkit to help you make the most out of using Python
  89. interactively. Its main components are:
  90. * A powerful interactive Python shell
  91. * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
  92. notebooks and other interactive frontends.
  93. The enhanced interactive Python shells have the following main features:
  94. * Comprehensive object introspection.
  95. * Input history, persistent across sessions.
  96. * Caching of output results during a session with automatically generated
  97. references.
  98. * Extensible tab completion, with support by default for completion of python
  99. variables and keywords, filenames and function keywords.
  100. * Extensible system of 'magic' commands for controlling the environment and
  101. performing many tasks related either to IPython or the operating system.
  102. * A rich configuration system with easy switching between different setups
  103. (simpler than changing $PYTHONSTARTUP environment variables every time).
  104. * Session logging and reloading.
  105. * Extensible syntax processing for special purpose situations.
  106. * Access to the system shell with user-extensible alias system.
  107. * Easily embeddable in other Python programs and GUIs.
  108. * Integrated access to the pdb debugger and the Python profiler.
  109. The latest development version is always available from IPython's `GitHub
  110. site <http://github.com/ipython>`_.