no bug - Correct some typos in the comments. a=typo-fix
[gecko.git] / third_party / python / PyYAML / PKG-INFO
blobc8905983e369893f68879f4cdfb7290d54d5f822
1 Metadata-Version: 2.1
2 Name: PyYAML
3 Version: 6.0.1
4 Summary: YAML parser and emitter for Python
5 Home-page: https://pyyaml.org/
6 Download-URL: https://pypi.org/project/PyYAML/
7 Author: Kirill Simonov
8 Author-email: xi@resolvent.net
9 License: MIT
10 Project-URL: Bug Tracker, https://github.com/yaml/pyyaml/issues
11 Project-URL: CI, https://github.com/yaml/pyyaml/actions
12 Project-URL: Documentation, https://pyyaml.org/wiki/PyYAMLDocumentation
13 Project-URL: Mailing lists, http://lists.sourceforge.net/lists/listinfo/yaml-core
14 Project-URL: Source Code, https://github.com/yaml/pyyaml
15 Platform: Any
16 Classifier: Development Status :: 5 - Production/Stable
17 Classifier: Intended Audience :: Developers
18 Classifier: License :: OSI Approved :: MIT License
19 Classifier: Operating System :: OS Independent
20 Classifier: Programming Language :: Cython
21 Classifier: Programming Language :: Python
22 Classifier: Programming Language :: Python :: 3
23 Classifier: Programming Language :: Python :: 3.6
24 Classifier: Programming Language :: Python :: 3.7
25 Classifier: Programming Language :: Python :: 3.8
26 Classifier: Programming Language :: Python :: 3.9
27 Classifier: Programming Language :: Python :: 3.10
28 Classifier: Programming Language :: Python :: 3.11
29 Classifier: Programming Language :: Python :: Implementation :: CPython
30 Classifier: Programming Language :: Python :: Implementation :: PyPy
31 Classifier: Topic :: Software Development :: Libraries :: Python Modules
32 Classifier: Topic :: Text Processing :: Markup
33 Requires-Python: >=3.6
34 License-File: LICENSE
36 YAML is a data serialization format designed for human readability
37 and interaction with scripting languages.  PyYAML is a YAML parser
38 and emitter for Python.
40 PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
41 support, capable extension API, and sensible error messages.  PyYAML
42 supports standard YAML tags and provides Python-specific tags that
43 allow to represent an arbitrary Python object.
45 PyYAML is applicable for a broad range of tasks from complex
46 configuration files to object serialization and persistence.