mirror of https://github.com/morpheus65535/bazarr
62 lines
2.7 KiB
Plaintext
62 lines
2.7 KiB
Plaintext
|
Metadata-Version: 2.1
|
||
|
Name: referencing
|
||
|
Version: 0.23.0
|
||
|
Summary: JSON Referencing + Python
|
||
|
Project-URL: Homepage, https://github.com/python-jsonschema/referencing
|
||
|
Project-URL: Issues, https://github.com/python-jsonschema/referencing/issues/
|
||
|
Project-URL: Source, https://github.com/python-jsonschema/referencing
|
||
|
Author: Julian Berman
|
||
|
Author-email: Julian+referencing@GrayVines.com
|
||
|
License: MIT
|
||
|
License-File: COPYING
|
||
|
Classifier: Development Status :: 3 - Alpha
|
||
|
Classifier: License :: OSI Approved :: MIT License
|
||
|
Classifier: Operating System :: OS Independent
|
||
|
Classifier: Programming Language :: Python
|
||
|
Classifier: Programming Language :: Python :: 3
|
||
|
Classifier: Programming Language :: Python :: 3.8
|
||
|
Classifier: Programming Language :: Python :: 3.9
|
||
|
Classifier: Programming Language :: Python :: 3.10
|
||
|
Classifier: Programming Language :: Python :: 3.11
|
||
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||
|
Requires-Python: >=3.8
|
||
|
Requires-Dist: attrs>=22.2.0
|
||
|
Requires-Dist: pyrsistent
|
||
|
Description-Content-Type: text/x-rst
|
||
|
|
||
|
===============
|
||
|
``referencing``
|
||
|
===============
|
||
|
|
||
|
|PyPI| |Pythons| |CI| |pre-commit|
|
||
|
|
||
|
.. |PyPI| image:: https://img.shields.io/pypi/v/referencing.svg
|
||
|
:alt: PyPI version
|
||
|
:target: https://pypi.org/project/referencing/
|
||
|
|
||
|
.. |Pythons| image:: https://img.shields.io/pypi/pyversions/referencing.svg
|
||
|
:alt: Supported Python versions
|
||
|
:target: https://pypi.org/project/referencing/
|
||
|
|
||
|
.. |CI| image:: https://github.com/python-jsonschema/referencing/workflows/CI/badge.svg
|
||
|
:alt: Build status
|
||
|
:target: https://github.com/python-jsonschema/referencing/actions?query=workflow%3ACI
|
||
|
|
||
|
.. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat
|
||
|
:alt: ReadTheDocs status
|
||
|
:target: https://referencing.readthedocs.io/en/stable/
|
||
|
|
||
|
.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/python-jsonschema/referencing/main.svg
|
||
|
:alt: pre-commit.ci status
|
||
|
:target: https://results.pre-commit.ci/latest/github/python-jsonschema/referencing/main
|
||
|
|
||
|
|
||
|
An implementation-agnostic implementation of JSON reference resolution.
|
||
|
|
||
|
In other words, a way for e.g. JSON Schema tooling to resolve the ``$ref`` keyword across all drafts (without needing to implement support themselves).
|
||
|
|
||
|
What's here is inspired in part by the budding JSON `reference specification(s) <https://github.com/json-schema-org/referencing>`_ (currently housed within the JSON Schema organization but intended to be more broadly applicable), which intend to detach some of the referencing behavior from JSON Schema's own specifications.
|
||
|
|
||
|
See `the documentation <https://referencing.readthedocs.io/>`_ for more details.
|