METADATA 2.4 KB

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