METADATA 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. Metadata-Version: 2.4
  2. Name: ipython
  3. Version: 9.12.0
  4. Summary: IPython: Productive Interactive Computing
  5. Author: The IPython Development Team
  6. Author-email: ipython-dev@python.org
  7. License-Expression: BSD-3-Clause
  8. Project-URL: Homepage, https://ipython.org
  9. Project-URL: Documentation, https://ipython.readthedocs.io/
  10. Project-URL: Funding, https://jupyter.org/about#donate
  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: 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.12
  26. Description-Content-Type: text/x-rst
  27. License-File: LICENSE
  28. License-File: COPYING.rst
  29. Requires-Dist: colorama>=0.4.4; sys_platform == "win32"
  30. Requires-Dist: decorator>=5.1.0
  31. Requires-Dist: ipython-pygments-lexers>=1.0.0
  32. Requires-Dist: jedi>=0.18.2
  33. Requires-Dist: matplotlib-inline>=0.1.6
  34. Requires-Dist: pexpect>4.6; sys_platform != "win32" and sys_platform != "emscripten"
  35. Requires-Dist: prompt_toolkit<3.1.0,>=3.0.41
  36. Requires-Dist: pygments>=2.14.0
  37. Requires-Dist: stack_data>=0.6.0
  38. Requires-Dist: traitlets>=5.13.0
  39. Provides-Extra: black
  40. Requires-Dist: black; extra == "black"
  41. Provides-Extra: doc
  42. Requires-Dist: docrepr; extra == "doc"
  43. Requires-Dist: exceptiongroup; extra == "doc"
  44. Requires-Dist: intersphinx_registry; extra == "doc"
  45. Requires-Dist: ipykernel; extra == "doc"
  46. Requires-Dist: ipython[matplotlib,test]; extra == "doc"
  47. Requires-Dist: setuptools>=80.0; extra == "doc"
  48. Requires-Dist: sphinx_toml==0.0.4; extra == "doc"
  49. Requires-Dist: sphinx-rtd-theme>=0.1.8; extra == "doc"
  50. Requires-Dist: sphinx>=8.0; extra == "doc"
  51. Requires-Dist: typing_extensions; extra == "doc"
  52. Provides-Extra: test
  53. Requires-Dist: pytest>=7.0.0; extra == "test"
  54. Requires-Dist: pytest-asyncio>=1.0.0; extra == "test"
  55. Requires-Dist: testpath>=0.2; extra == "test"
  56. Requires-Dist: packaging>=23.0.0; extra == "test"
  57. Requires-Dist: setuptools>=80.0; extra == "test"
  58. Provides-Extra: test-extra
  59. Requires-Dist: ipython[test]; extra == "test-extra"
  60. Requires-Dist: curio; extra == "test-extra"
  61. Requires-Dist: jupyter_ai; extra == "test-extra"
  62. Requires-Dist: ipython[matplotlib]; extra == "test-extra"
  63. Requires-Dist: nbformat; extra == "test-extra"
  64. Requires-Dist: nbclient; extra == "test-extra"
  65. Requires-Dist: ipykernel>6.30; extra == "test-extra"
  66. Requires-Dist: numpy>=2.0; extra == "test-extra"
  67. Requires-Dist: pandas>2.1; extra == "test-extra"
  68. Requires-Dist: trio>=0.22.0; extra == "test-extra"
  69. Provides-Extra: matplotlib
  70. Requires-Dist: matplotlib>3.9; extra == "matplotlib"
  71. Provides-Extra: all
  72. Requires-Dist: ipython[doc,matplotlib,terminal,test,test_extra]; extra == "all"
  73. Requires-Dist: argcomplete>=3.0; extra == "all"
  74. Requires-Dist: types-decorator; extra == "all"
  75. Dynamic: author
  76. Dynamic: author-email
  77. Dynamic: license-file
  78. IPython provides a rich toolkit to help you make the most out of using Python
  79. interactively. Its main components are:
  80. * A powerful interactive Python shell
  81. * A `Jupyter <https://jupyter.org/>`_ kernel to work with Python code in Jupyter
  82. notebooks and other interactive frontends.
  83. The enhanced interactive Python shells have the following main features:
  84. * Comprehensive object introspection.
  85. * Input history, persistent across sessions.
  86. * Caching of output results during a session with automatically generated
  87. references.
  88. * Extensible tab completion, with support by default for completion of python
  89. variables and keywords, filenames and function keywords.
  90. * Extensible system of 'magic' commands for controlling the environment and
  91. performing many tasks related either to IPython or the operating system.
  92. * A rich configuration system with easy switching between different setups
  93. (simpler than changing $PYTHONSTARTUP environment variables every time).
  94. * Session logging and reloading.
  95. * Extensible syntax processing for special purpose situations.
  96. * Access to the system shell with user-extensible alias system.
  97. * Easily embeddable in other Python programs and GUIs.
  98. * Integrated access to the pdb debugger and the Python profiler.
  99. The latest development version is always available from IPython's `GitHub
  100. site <http://github.com/ipython>`_.