METADATA 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Metadata-Version: 2.1
  2. Name: Pygments
  3. Version: 2.17.2
  4. Summary: Pygments is a syntax highlighting package written in Python.
  5. Project-URL: Homepage, https://pygments.org
  6. Project-URL: Documentation, https://pygments.org/docs
  7. Project-URL: Source, https://github.com/pygments/pygments
  8. Project-URL: Bug Tracker, https://github.com/pygments/pygments/issues
  9. Project-URL: Changelog, https://github.com/pygments/pygments/blob/master/CHANGES
  10. Author-email: Georg Brandl <georg@python.org>
  11. Maintainer: Matthäus G. Chajdas
  12. Maintainer-email: Georg Brandl <georg@python.org>, Jean Abou Samra <jean@abou-samra.fr>
  13. License: BSD-2-Clause
  14. License-File: AUTHORS
  15. License-File: LICENSE
  16. Keywords: syntax highlighting
  17. Classifier: Development Status :: 6 - Mature
  18. Classifier: Intended Audience :: Developers
  19. Classifier: Intended Audience :: End Users/Desktop
  20. Classifier: Intended Audience :: System Administrators
  21. Classifier: License :: OSI Approved :: BSD License
  22. Classifier: Operating System :: OS Independent
  23. Classifier: Programming Language :: Python
  24. Classifier: Programming Language :: Python :: 3
  25. Classifier: Programming Language :: Python :: 3.7
  26. Classifier: Programming Language :: Python :: 3.8
  27. Classifier: Programming Language :: Python :: 3.9
  28. Classifier: Programming Language :: Python :: 3.10
  29. Classifier: Programming Language :: Python :: 3.11
  30. Classifier: Programming Language :: Python :: 3.12
  31. Classifier: Programming Language :: Python :: Implementation :: CPython
  32. Classifier: Programming Language :: Python :: Implementation :: PyPy
  33. Classifier: Topic :: Text Processing :: Filters
  34. Classifier: Topic :: Utilities
  35. Requires-Python: >=3.7
  36. Provides-Extra: plugins
  37. Requires-Dist: importlib-metadata; python_version < '3.8' and extra == 'plugins'
  38. Provides-Extra: windows-terminal
  39. Requires-Dist: colorama>=0.4.6; extra == 'windows-terminal'
  40. Description-Content-Type: text/x-rst
  41. Pygments
  42. ~~~~~~~~
  43. Pygments is a syntax highlighting package written in Python.
  44. It is a generic syntax highlighter suitable for use in code hosting, forums,
  45. wikis or other applications that need to prettify source code. Highlights
  46. are:
  47. * a wide range of over 500 languages and other text formats is supported
  48. * special attention is paid to details, increasing quality by a fair amount
  49. * support for new languages and formats are added easily
  50. * a number of output formats, presently HTML, LaTeX, RTF, SVG, all image
  51. formats that PIL supports and ANSI sequences
  52. * it is usable as a command-line tool and as a library
  53. Copyright 2006-2023 by the Pygments team, see ``AUTHORS``.
  54. Licensed under the BSD, see ``LICENSE`` for details.