shomez commited on
Commit
b720efe
·
verified ·
1 Parent(s): 945a099

Upload METADATA with huggingface_hub

Browse files
Files changed (1) hide show
  1. METADATA +41 -53
METADATA CHANGED
@@ -1,22 +1,19 @@
1
- Metadata-Version: 2.3
2
- Name: referencing
3
- Version: 0.35.1
4
- Summary: JSON Referencing + Python
5
- Project-URL: Documentation, https://referencing.readthedocs.io/
6
- Project-URL: Homepage, https://github.com/python-jsonschema/referencing
7
- Project-URL: Issues, https://github.com/python-jsonschema/referencing/issues/
8
- Project-URL: Funding, https://github.com/sponsors/Julian
9
- Project-URL: Tidelift, https://tidelift.com/subscription/pkg/pypi-referencing?utm_source=pypi-referencing&utm_medium=referral&utm_campaign=pypi-link
10
- Project-URL: Changelog, https://referencing.readthedocs.io/en/stable/changes/
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 :: MIT License
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 :: File Formats :: JSON
28
- Classifier: Topic :: File Formats :: JSON :: JSON Schema
29
- Requires-Python: >=3.8
30
- Requires-Dist: attrs>=22.2.0
31
- Requires-Dist: rpds-py>=0.7.0
32
- Description-Content-Type: text/x-rst
33
-
34
- ===============
35
- ``referencing``
36
- ===============
37
-
38
- |PyPI| |Pythons| |CI| |ReadTheDocs| |pre-commit|
39
-
40
- .. |PyPI| image:: https://img.shields.io/pypi/v/referencing.svg
41
- :alt: PyPI version
42
- :target: https://pypi.org/project/referencing/
43
-
44
- .. |Pythons| image:: https://img.shields.io/pypi/pyversions/referencing.svg
45
- :alt: Supported Python versions
46
- :target: https://pypi.org/project/referencing/
47
-
48
- .. |CI| image:: https://github.com/python-jsonschema/referencing/workflows/CI/badge.svg
49
- :alt: Build status
50
- :target: https://github.com/python-jsonschema/referencing/actions?query=workflow%3ACI
51
-
52
- .. |ReadTheDocs| image:: https://readthedocs.org/projects/referencing/badge/?version=stable&style=flat
53
- :alt: ReadTheDocs status
54
- :target: https://referencing.readthedocs.io/en/stable/
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
+ [![PyPI version](https://img.shields.io/pypi/v/jsonpointer.svg)](https://pypi.python.org/pypi/jsonpointer/)
35
+ [![Supported Python versions](https://img.shields.io/pypi/pyversions/jsonpointer.svg)](https://pypi.python.org/pypi/jsonpointer/)
36
+ [![Coverage Status](https://coveralls.io/repos/stefankoegl/python-json-pointer/badge.svg?branch=master)](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