jsonschema-cli2 0.4.0__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/PKG-INFO +2 -2
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/args.py +0 -2
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/pyproject.toml +7 -7
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/LICENSE +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/README.md +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/__init__.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/__main__.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/cli.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/exceptions.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/handlers.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/load.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/resolvers.py +0 -0
- {jsonschema_cli2-0.4.0 → jsonschema_cli2-1.1.0}/jsonschema_cli2/tests/test_cli.py +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jsonschema-cli2
|
|
3
|
-
Version:
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: A thin wrapper over to allow validating schemas easily using simple CLI commands.
|
|
5
5
|
Author: solairen
|
|
6
6
|
Author-email: solairen@solairen.tech
|
|
7
7
|
Requires-Python: >=3.8
|
|
8
|
-
Classifier: Development Status ::
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
9
|
Classifier: Environment :: Console
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
@@ -7,12 +7,16 @@ jsonschema-cli2 = 'jsonschema_cli2.cli:run'
|
|
|
7
7
|
|
|
8
8
|
[tool.poetry]
|
|
9
9
|
name = "jsonschema-cli2"
|
|
10
|
-
version = "
|
|
10
|
+
version = "1.1.0"
|
|
11
11
|
description = "A thin wrapper over to allow validating schemas easily using simple CLI commands."
|
|
12
12
|
authors = ["solairen <solairen@solairen.tech>"]
|
|
13
13
|
readme = 'README.md'
|
|
14
14
|
classifiers = [
|
|
15
|
-
"Development Status ::
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
|
+
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Environment :: Console",
|
|
16
20
|
"Programming Language :: Python",
|
|
17
21
|
"Programming Language :: Python :: 3",
|
|
18
22
|
"Programming Language :: Python :: 3 :: Only",
|
|
@@ -21,11 +25,7 @@ classifiers = [
|
|
|
21
25
|
"Programming Language :: Python :: 3.10",
|
|
22
26
|
"Programming Language :: Python :: 3.11",
|
|
23
27
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
24
|
-
"Programming Language :: Python :: Implementation :: PyPy"
|
|
25
|
-
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
26
|
-
"Operating System :: OS Independent",
|
|
27
|
-
"Intended Audience :: Developers",
|
|
28
|
-
"Environment :: Console"
|
|
28
|
+
"Programming Language :: Python :: Implementation :: PyPy"
|
|
29
29
|
]
|
|
30
30
|
|
|
31
31
|
[tool.poetry.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|