You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.7 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: PyYAML
  3. Version: 5.3
  4. Summary: YAML parser and emitter for Python
  5. Home-page: https://github.com/yaml/pyyaml
  6. Author: Kirill Simonov
  7. Author-email: xi@resolvent.net
  8. License: MIT
  9. Download-URL: https://pypi.org/project/PyYAML/
  10. Platform: Any
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Cython
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 2
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Classifier: Programming Language :: Python :: 3.8
  24. Classifier: Programming Language :: Python :: Implementation :: CPython
  25. Classifier: Programming Language :: Python :: Implementation :: PyPy
  26. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  27. Classifier: Topic :: Text Processing :: Markup
  28. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
  29. YAML is a data serialization format designed for human readability
  30. and interaction with scripting languages. PyYAML is a YAML parser
  31. and emitter for Python.
  32. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
  33. support, capable extension API, and sensible error messages. PyYAML
  34. supports standard YAML tags and provides Python-specific tags that
  35. allow to represent an arbitrary Python object.
  36. PyYAML is applicable for a broad range of tasks from complex
  37. configuration files to object serialization and persistence.