Upload METADATA with huggingface_hub
Browse files
METADATA
CHANGED
|
@@ -1,22 +1,19 @@
|
|
| 1 |
-
Metadata-Version: 2.
|
| 2 |
-
Name:
|
| 3 |
-
Version: 0.
|
| 4 |
-
Summary: JSON
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
Project-URL: Source, https://github.com/python-jsonschema/referencing
|
| 12 |
-
Author-email: Julian Berman <Julian+referencing@GrayVines.com>
|
| 13 |
-
License-File: COPYING
|
| 14 |
-
Keywords: asyncapi,json,jsonschema,openapi,referencing
|
| 15 |
-
Classifier: Development Status :: 3 - Alpha
|
| 16 |
Classifier: Intended Audience :: Developers
|
| 17 |
-
Classifier: License :: OSI Approved ::
|
| 18 |
Classifier: Operating System :: OS Independent
|
| 19 |
Classifier: Programming Language :: Python
|
|
|
|
|
|
|
| 20 |
Classifier: Programming Language :: Python :: 3.8
|
| 21 |
Classifier: Programming Language :: Python :: 3.9
|
| 22 |
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -24,40 +21,31 @@ Classifier: Programming Language :: Python :: 3.11
|
|
| 24 |
Classifier: Programming Language :: Python :: 3.12
|
| 25 |
Classifier: Programming Language :: Python :: Implementation :: CPython
|
| 26 |
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
| 27 |
-
Classifier: Topic ::
|
| 28 |
-
Classifier: Topic ::
|
| 29 |
-
Requires-Python: >=3.
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/python-jsonschema/referencing/main.svg
|
| 57 |
-
:alt: pre-commit.ci status
|
| 58 |
-
:target: https://results.pre-commit.ci/latest/github/python-jsonschema/referencing/main
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
An implementation-agnostic implementation of JSON reference resolution.
|
| 62 |
-
|
| 63 |
-
See `the documentation <https://referencing.readthedocs.io/>`_ for more details.
|
|
|
|
| 1 |
+
Metadata-Version: 2.1
|
| 2 |
+
Name: jsonpointer
|
| 3 |
+
Version: 3.0.0
|
| 4 |
+
Summary: Identify specific nodes in a JSON document (RFC 6901)
|
| 5 |
+
Home-page: https://github.com/stefankoegl/python-json-pointer
|
| 6 |
+
Author: Stefan Kögl
|
| 7 |
+
Author-email: stefan@skoegl.net
|
| 8 |
+
License: Modified BSD License
|
| 9 |
+
Classifier: Development Status :: 5 - Production/Stable
|
| 10 |
+
Classifier: Environment :: Console
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
Classifier: Intended Audience :: Developers
|
| 12 |
+
Classifier: License :: OSI Approved :: BSD License
|
| 13 |
Classifier: Operating System :: OS Independent
|
| 14 |
Classifier: Programming Language :: Python
|
| 15 |
+
Classifier: Programming Language :: Python :: 3
|
| 16 |
+
Classifier: Programming Language :: Python :: 3.7
|
| 17 |
Classifier: Programming Language :: Python :: 3.8
|
| 18 |
Classifier: Programming Language :: Python :: 3.9
|
| 19 |
Classifier: Programming Language :: Python :: 3.10
|
|
|
|
| 21 |
Classifier: Programming Language :: Python :: 3.12
|
| 22 |
Classifier: Programming Language :: Python :: Implementation :: CPython
|
| 23 |
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
| 24 |
+
Classifier: Topic :: Software Development :: Libraries
|
| 25 |
+
Classifier: Topic :: Utilities
|
| 26 |
+
Requires-Python: >=3.7
|
| 27 |
+
Description-Content-Type: text/markdown
|
| 28 |
+
License-File: LICENSE.txt
|
| 29 |
+
License-File: AUTHORS
|
| 30 |
+
|
| 31 |
+
python-json-pointer
|
| 32 |
+
===================
|
| 33 |
+
|
| 34 |
+
[](https://pypi.python.org/pypi/jsonpointer/)
|
| 35 |
+
[](https://pypi.python.org/pypi/jsonpointer/)
|
| 36 |
+
[](https://coveralls.io/r/stefankoegl/python-json-pointer?branch=master)
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
Resolve JSON Pointers in Python
|
| 40 |
+
-------------------------------
|
| 41 |
+
|
| 42 |
+
Library to resolve JSON Pointers according to
|
| 43 |
+
[RFC 6901](http://tools.ietf.org/html/rfc6901)
|
| 44 |
+
|
| 45 |
+
See source code for examples
|
| 46 |
+
* Website: https://github.com/stefankoegl/python-json-pointer
|
| 47 |
+
* Repository: https://github.com/stefankoegl/python-json-pointer.git
|
| 48 |
+
* Documentation: https://python-json-pointer.readthedocs.org/
|
| 49 |
+
* PyPI: https://pypi.python.org/pypi/jsonpointer
|
| 50 |
+
* Travis CI: https://travis-ci.org/stefankoegl/python-json-pointer
|
| 51 |
+
* Coveralls: https://coveralls.io/r/stefankoegl/python-json-pointer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|