METADATA 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. Metadata-Version: 2.1
  2. Name: ipython
  3. Version: 8.24.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: ipykernel ; extra == 'doc'
  47. Requires-Dist: setuptools >=18.5 ; extra == 'doc'
  48. Requires-Dist: sphinx >=1.3 ; extra == 'doc'
  49. Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
  50. Requires-Dist: sphinxcontrib-jquery ; extra == 'doc'
  51. Requires-Dist: docrepr ; extra == 'doc'
  52. Requires-Dist: matplotlib ; extra == 'doc'
  53. Requires-Dist: stack-data ; extra == 'doc'
  54. Requires-Dist: typing-extensions ; extra == 'doc'
  55. Requires-Dist: exceptiongroup ; extra == 'doc'
  56. Requires-Dist: ipython[test] ; extra == 'doc'
  57. Provides-Extra: kernel
  58. Requires-Dist: ipykernel ; extra == 'kernel'
  59. Provides-Extra: matplotlib
  60. Requires-Dist: matplotlib ; extra == 'matplotlib'
  61. Provides-Extra: nbconvert
  62. Requires-Dist: nbconvert ; extra == 'nbconvert'
  63. Provides-Extra: nbformat
  64. Requires-Dist: nbformat ; extra == 'nbformat'
  65. Provides-Extra: notebook
  66. Requires-Dist: ipywidgets ; extra == 'notebook'
  67. Requires-Dist: notebook ; extra == 'notebook'
  68. Provides-Extra: parallel
  69. Requires-Dist: ipyparallel ; extra == 'parallel'
  70. Provides-Extra: qtconsole
  71. Requires-Dist: qtconsole ; extra == 'qtconsole'
  72. Provides-Extra: terminal
  73. Provides-Extra: test
  74. Requires-Dist: pytest ; extra == 'test'
  75. Requires-Dist: pytest-asyncio <0.22 ; extra == 'test'
  76. Requires-Dist: testpath ; extra == 'test'
  77. Requires-Dist: pickleshare ; extra == 'test'
  78. Provides-Extra: test_extra
  79. Requires-Dist: ipython[test] ; extra == 'test_extra'
  80. Requires-Dist: curio ; extra == 'test_extra'
  81. Requires-Dist: matplotlib !=3.2.0 ; extra == 'test_extra'
  82. Requires-Dist: nbformat ; extra == 'test_extra'
  83. Requires-Dist: numpy >=1.23 ; extra == 'test_extra'
  84. Requires-Dist: pandas ; extra == 'test_extra'
  85. Requires-Dist: trio ; extra == 'test_extra'
  86. IPython provides a rich toolkit to help you make the most out of using Python
  87. interactively. Its main components are:
  88. * A powerful interactive Python shell
  89. * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
  90. notebooks and other interactive frontends.
  91. The enhanced interactive Python shells have the following main features:
  92. * Comprehensive object introspection.
  93. * Input history, persistent across sessions.
  94. * Caching of output results during a session with automatically generated
  95. references.
  96. * Extensible tab completion, with support by default for completion of python
  97. variables and keywords, filenames and function keywords.
  98. * Extensible system of 'magic' commands for controlling the environment and
  99. performing many tasks related either to IPython or the operating system.
  100. * A rich configuration system with easy switching between different setups
  101. (simpler than changing $PYTHONSTARTUP environment variables every time).
  102. * Session logging and reloading.
  103. * Extensible syntax processing for special purpose situations.
  104. * Access to the system shell with user-extensible alias system.
  105. * Easily embeddable in other Python programs and GUIs.
  106. * Integrated access to the pdb debugger and the Python profiler.
  107. The latest development version is always available from IPython's `GitHub
  108. site <http://github.com/ipython>`_.