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.
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jsonschema-cli2
3
- Version: 0.4.0
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 :: 4 - Beta
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+)
@@ -70,5 +70,3 @@ def schema_validate(args):
70
70
  resolver = relative_path_resolver(schema, base_path=path)
71
71
 
72
72
  jsonschema.Draft7Validator(schema, resolver=resolver).validate(instance=instance)
73
-
74
-
@@ -7,12 +7,16 @@ jsonschema-cli2 = 'jsonschema_cli2.cli:run'
7
7
 
8
8
  [tool.poetry]
9
9
  name = "jsonschema-cli2"
10
- version = "0.4.0"
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 :: 4 - Beta",
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