diff options
| author | S. Solomon Darnell | 2025-03-28 21:52:21 -0500 |
|---|---|---|
| committer | S. Solomon Darnell | 2025-03-28 21:52:21 -0500 |
| commit | 4a52a71956a8d46fcb7294ac71734504bb09bcc2 (patch) | |
| tree | ee3dc5af3b6313e921cd920906356f5d4febc4ed /.venv/lib/python3.12/site-packages/strictyaml/ruamel/__init__.py | |
| parent | cc961e04ba734dd72309fb548a2f97d67d578813 (diff) | |
| download | gn-ai-master.tar.gz | |
Diffstat (limited to '.venv/lib/python3.12/site-packages/strictyaml/ruamel/__init__.py')
| -rw-r--r-- | .venv/lib/python3.12/site-packages/strictyaml/ruamel/__init__.py | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/strictyaml/ruamel/__init__.py b/.venv/lib/python3.12/site-packages/strictyaml/ruamel/__init__.py new file mode 100644 index 00000000..4ec67b39 --- /dev/null +++ b/.venv/lib/python3.12/site-packages/strictyaml/ruamel/__init__.py @@ -0,0 +1,63 @@ +# coding: utf-8 + +from __future__ import print_function, absolute_import, division, unicode_literals + +if False: # MYPY + from typing import Dict, Any # NOQA + +_package_data = dict( + full_package_name="strictyaml.ruamel", + version_info=(0, 16, 13), + __version__="0.16.13", + author="Anthon van der Neut", + author_email="a.van.der.neut@ruamel.eu", + description="strictyaml.ruamel is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", # NOQA + entry_points=None, + since=2014, + extras_require={ + ':platform_python_implementation=="CPython" and python_version<="2.7"': [ + "ruamel.ordereddict" + ], # NOQA + ':platform_python_implementation=="CPython" and python_version<"3.10"': [ + "strictyaml.ruamel.clib>=0.1.2" + ], # NOQA + "jinja2": ["strictyaml.ruamel.jinja2>=0.2"], + "docs": ["ryd"], + }, + classifiers=[ + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", + "Programming Language :: Python :: Implementation :: Jython", + "Topic :: Software Development :: Libraries :: Python Modules", + "Topic :: Text Processing :: Markup", + "Typing :: Typed", + ], + keywords="yaml 1.2 parser round-trip preserve quotes order config", + read_the_docs="yaml", + supported=[(2, 7), (3, 5)], # minimum + tox=dict( + env="*", # remove 'pn', no longer test narrow Python 2.7 for unicode patterns and PyPy + deps="ruamel.std.pathlib", + fl8excl="_test/lib", + ), + universal=True, + rtfd="yaml", +) # type: Dict[Any, Any] + + +version_info = _package_data["version_info"] +__version__ = _package_data["__version__"] + +try: + from .cyaml import * # NOQA + + __with_libyaml__ = True +except (ImportError, ValueError): # for Jython + __with_libyaml__ = False + +from strictyaml.ruamel.main import * # NOQA |
