METADATA 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. Metadata-Version: 2.0
  2. Name: ipython
  3. Version: 5.1.0
  4. Summary: IPython: Productive Interactive Computing
  5. Home-page: http://ipython.org
  6. Author: The IPython Development Team
  7. Author-email: ipython-dev@scipy.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: decorator
  23. Requires-Dist: pickleshare
  24. Requires-Dist: prompt-toolkit (>=1.0.3,<2.0.0)
  25. Requires-Dist: pygments
  26. Requires-Dist: setuptools (>=18.5)
  27. Requires-Dist: simplegeneric (>0.8)
  28. Requires-Dist: traitlets (>=4.2)
  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"
  35. Provides-Extra: all
  36. Requires-Dist: Sphinx (>=1.3); extra == 'all'
  37. Requires-Dist: ipykernel; extra == 'all'
  38. Requires-Dist: ipyparallel; extra == 'all'
  39. Requires-Dist: ipywidgets; extra == 'all'
  40. Requires-Dist: nbconvert; extra == 'all'
  41. Requires-Dist: nbformat; extra == 'all'
  42. Requires-Dist: nose (>=0.10.1); extra == 'all'
  43. Requires-Dist: notebook; extra == 'all'
  44. Requires-Dist: numpy; extra == 'all'
  45. Requires-Dist: pygments; extra == 'all'
  46. Requires-Dist: qtconsole; extra == 'all'
  47. Requires-Dist: requests; extra == 'all'
  48. Requires-Dist: testpath; extra == 'all'
  49. Provides-Extra: doc
  50. Requires-Dist: Sphinx (>=1.3); extra == 'doc'
  51. Provides-Extra: kernel
  52. Requires-Dist: ipykernel; extra == 'kernel'
  53. Provides-Extra: nbconvert
  54. Requires-Dist: nbconvert; extra == 'nbconvert'
  55. Provides-Extra: nbformat
  56. Requires-Dist: nbformat; extra == 'nbformat'
  57. Provides-Extra: notebook
  58. Requires-Dist: ipywidgets; extra == 'notebook'
  59. Requires-Dist: notebook; extra == 'notebook'
  60. Provides-Extra: parallel
  61. Requires-Dist: ipyparallel; extra == 'parallel'
  62. Provides-Extra: qtconsole
  63. Requires-Dist: qtconsole; extra == 'qtconsole'
  64. Provides-Extra: terminal
  65. Provides-Extra: test
  66. Requires-Dist: ipykernel; extra == 'test'
  67. Requires-Dist: nbformat; extra == 'test'
  68. Requires-Dist: nose (>=0.10.1); extra == 'test'
  69. Requires-Dist: numpy; extra == 'test'
  70. Requires-Dist: pygments; extra == 'test'
  71. Requires-Dist: requests; extra == 'test'
  72. Requires-Dist: testpath; extra == 'test'
  73. Provides-Extra: test
  74. Requires-Dist: mock; python_version == "2.7" and extra == 'test'
  75. IPython provides a rich toolkit to help you make the most out of using Python
  76. interactively. Its main components are:
  77. * A powerful interactive Python shell
  78. * A `Jupyter <http://jupyter.org/>`_ kernel to work with Python code in Jupyter
  79. notebooks and other interactive frontends.
  80. The enhanced interactive Python shells have the following main features:
  81. * Comprehensive object introspection.
  82. * Input history, persistent across sessions.
  83. * Caching of output results during a session with automatically generated
  84. references.
  85. * Extensible tab completion, with support by default for completion of python
  86. variables and keywords, filenames and function keywords.
  87. * Extensible system of 'magic' commands for controlling the environment and
  88. performing many tasks related either to IPython or the operating system.
  89. * A rich configuration system with easy switching between different setups
  90. (simpler than changing $PYTHONSTARTUP environment variables every time).
  91. * Session logging and reloading.
  92. * Extensible syntax processing for special purpose situations.
  93. * Access to the system shell with user-extensible alias system.
  94. * Easily embeddable in other Python programs and GUIs.
  95. * Integrated access to the pdb debugger and the Python profiler.
  96. The latest development version is always available from IPython's `GitHub
  97. site <http://github.com/ipython>`_.