METADATA 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. Metadata-Version: 2.1
  2. Name: ipython
  3. Version: 8.31.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: colorama; sys_platform == "win32"
  30. Requires-Dist: decorator
  31. Requires-Dist: exceptiongroup; python_version < "3.11"
  32. Requires-Dist: jedi>=0.13
  33. Requires-Dist: matplotlib-inline
  34. Requires-Dist: pexpect>4.3; sys_platform != "win32" and sys_platform != "emscripten"
  35. Requires-Dist: prompt_toolkit<3.1.0,>=3.0.41
  36. Requires-Dist: pygments>=2.4.0
  37. Requires-Dist: stack_data
  38. Requires-Dist: traitlets>=5.13.0
  39. Requires-Dist: typing_extensions>=4.6; python_version < "3.12"
  40. Provides-Extra: black
  41. Requires-Dist: black; extra == "black"
  42. Provides-Extra: doc
  43. Requires-Dist: docrepr; extra == "doc"
  44. Requires-Dist: exceptiongroup; extra == "doc"
  45. Requires-Dist: intersphinx_registry; extra == "doc"
  46. Requires-Dist: ipykernel; extra == "doc"
  47. Requires-Dist: ipython[test]; extra == "doc"
  48. Requires-Dist: matplotlib; extra == "doc"
  49. Requires-Dist: setuptools>=18.5; extra == "doc"
  50. Requires-Dist: sphinx-rtd-theme; extra == "doc"
  51. Requires-Dist: sphinx>=1.3; extra == "doc"
  52. Requires-Dist: sphinxcontrib-jquery; extra == "doc"
  53. Requires-Dist: tomli; python_version < "3.11" and extra == "doc"
  54. Requires-Dist: typing_extensions; extra == "doc"
  55. Provides-Extra: kernel
  56. Requires-Dist: ipykernel; extra == "kernel"
  57. Provides-Extra: nbconvert
  58. Requires-Dist: nbconvert; extra == "nbconvert"
  59. Provides-Extra: nbformat
  60. Requires-Dist: nbformat; extra == "nbformat"
  61. Provides-Extra: notebook
  62. Requires-Dist: ipywidgets; extra == "notebook"
  63. Requires-Dist: notebook; extra == "notebook"
  64. Provides-Extra: parallel
  65. Requires-Dist: ipyparallel; extra == "parallel"
  66. Provides-Extra: qtconsole
  67. Requires-Dist: qtconsole; extra == "qtconsole"
  68. Provides-Extra: terminal
  69. Provides-Extra: test
  70. Requires-Dist: pytest; extra == "test"
  71. Requires-Dist: pytest-asyncio<0.22; extra == "test"
  72. Requires-Dist: testpath; extra == "test"
  73. Requires-Dist: pickleshare; extra == "test"
  74. Requires-Dist: packaging; extra == "test"
  75. Provides-Extra: test-extra
  76. Requires-Dist: ipython[test]; extra == "test-extra"
  77. Requires-Dist: curio; extra == "test-extra"
  78. Requires-Dist: matplotlib!=3.2.0; extra == "test-extra"
  79. Requires-Dist: nbformat; extra == "test-extra"
  80. Requires-Dist: numpy>=1.23; extra == "test-extra"
  81. Requires-Dist: pandas; extra == "test-extra"
  82. Requires-Dist: trio; extra == "test-extra"
  83. Provides-Extra: matplotlib
  84. Requires-Dist: matplotlib; extra == "matplotlib"
  85. Provides-Extra: all
  86. Requires-Dist: ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]; extra == "all"
  87. Requires-Dist: ipython[test,test_extra]; extra == "all"
  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>`_.