METADATA 1.1 KB

1234567891011121314151617181920212223242526
  1. Metadata-Version: 2.3
  2. Name: ipython_pygments_lexers
  3. Version: 1.1.1
  4. Summary: Defines a variety of Pygments lexers for highlighting IPython code.
  5. Author-email: The IPython Development Team <ipython-dev@python.org>
  6. Requires-Python: >=3.8
  7. Description-Content-Type: text/markdown
  8. Classifier: Framework :: IPython
  9. Classifier: License :: OSI Approved :: BSD License
  10. Requires-Dist: pygments
  11. Project-URL: Source, https://github.com/ipython/ipython-pygments-lexers
  12. A [Pygments](https://pygments.org/) plugin for IPython code & console sessions
  13. [IPython](https://ipython.org/) is an interactive Python shell. Among other features,
  14. it adds some special convenience syntax, including `%magics`, `!shell commands`
  15. and `help?`. This package contains lexers for these, to use with the Pygments syntax
  16. highlighting package.
  17. - The `ipython` lexer should be used where only input code is highlighted
  18. - The `ipythonconsole` lexer works for an IPython session, including code,
  19. prompts, output and tracebacks.
  20. These lexers were previously part of IPython itself (in `IPython.lib.lexers`),
  21. but have now been moved to a separate package.