METADATA 4.2 KB

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