jsonschema-cli2 0.2.0__tar.gz → 1.0.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.2.0 → jsonschema_cli2-1.0.0}/PKG-INFO +16 -4
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/README.md +1 -1
- jsonschema_cli2-1.0.0/pyproject.toml +58 -0
- jsonschema_cli2-0.2.0/pyproject.toml +0 -37
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/LICENSE +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/__init__.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/__main__.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/args.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/cli.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/exceptions.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/handlers.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/load.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/resolvers.py +0 -0
- {jsonschema_cli2-0.2.0 → jsonschema_cli2-1.0.0}/jsonschema_cli2/tests/test_cli.py +0 -0
|
@@ -1,18 +1,30 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jsonschema-cli2
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: A thin wrapper over to allow validating
|
|
5
|
-
Author:
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A thin wrapper over to allow validating schemas easily using simple CLI commands.
|
|
5
|
+
Author: solairen
|
|
6
6
|
Author-email: solairen@solairen.tech
|
|
7
7
|
Requires-Python: >=3.8
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
8
14
|
Classifier: Programming Language :: Python :: 3
|
|
9
15
|
Classifier: Programming Language :: Python :: 3.8
|
|
10
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
11
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
22
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
14
23
|
Requires-Dist: jsonschema (>=3.2.0)
|
|
15
24
|
Requires-Dist: pyyaml (>=5.3.1)
|
|
25
|
+
Project-URL: Homepage, https://github.com/solairen/jsonschema_cli2
|
|
26
|
+
Project-URL: Issues, https://github.com/solairen/jsonschema_cli2/issues
|
|
27
|
+
Project-URL: Source, https://github.com/solairen/jsonschema_cli2
|
|
16
28
|
Description-Content-Type: text/markdown
|
|
17
29
|
|
|
18
30
|
This is based on the frok from [jsonschema-cli](https://github.com/eyal-mor/jsonschema-cli.git).
|
|
@@ -23,7 +35,7 @@ A thin wrapper over [Python Jsonschema](https://github.com/Julian/jsonschema) to
|
|
|
23
35
|
|
|
24
36
|
## Installing
|
|
25
37
|
|
|
26
|
-
`pip install jsonschema-
|
|
38
|
+
`pip install jsonschema-cli2`
|
|
27
39
|
|
|
28
40
|
## Security
|
|
29
41
|
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["poetry>=0.12"]
|
|
3
|
+
build-backend = "poetry.masonry.api"
|
|
4
|
+
|
|
5
|
+
[tool.poetry.scripts]
|
|
6
|
+
jsonschema-cli2 = 'jsonschema_cli2.cli:run'
|
|
7
|
+
|
|
8
|
+
[tool.poetry]
|
|
9
|
+
name = "jsonschema-cli2"
|
|
10
|
+
version = "1.0.0"
|
|
11
|
+
description = "A thin wrapper over to allow validating schemas easily using simple CLI commands."
|
|
12
|
+
authors = ["solairen <solairen@solairen.tech>"]
|
|
13
|
+
readme = 'README.md'
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 5 - Production/Stable",
|
|
16
|
+
"Programming Language :: Python",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"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"
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[tool.poetry.urls]
|
|
32
|
+
Homepage = "https://github.com/solairen/jsonschema_cli2"
|
|
33
|
+
Source = "https://github.com/solairen/jsonschema_cli2"
|
|
34
|
+
Issues = "https://github.com/solairen/jsonschema_cli2/issues"
|
|
35
|
+
|
|
36
|
+
[tool.poetry.dependencies]
|
|
37
|
+
python = ">=3.8"
|
|
38
|
+
pyyaml = ">=5.3.1"
|
|
39
|
+
jsonschema = ">=3.2.0"
|
|
40
|
+
|
|
41
|
+
[tool.poetry.dev-dependencies]
|
|
42
|
+
flake8 = ">=3.8.2"
|
|
43
|
+
black = ">=19.10b0"
|
|
44
|
+
flake8-black = ">=0.2.0"
|
|
45
|
+
flake8-import-order = ">=0.18.1"
|
|
46
|
+
flake8-blind-except = ">=0.1.1"
|
|
47
|
+
flake8-builtins = ">=1.5.3"
|
|
48
|
+
flake8-logging-format = ">=0.6.0"
|
|
49
|
+
flake8-docstrings = ">=1.5.0"
|
|
50
|
+
flake8-rst-docstrings = ">=0.0.13"
|
|
51
|
+
ipython = ">=7.14.0"
|
|
52
|
+
ipdb = ">=0.13.2"
|
|
53
|
+
pytest = ">=5.4.2"
|
|
54
|
+
pytest-mock = ">=3.1.0"
|
|
55
|
+
twine = ">=3.1.1"
|
|
56
|
+
|
|
57
|
+
[tool.black]
|
|
58
|
+
line-length = 120
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["poetry>=0.12"]
|
|
3
|
-
build-backend = "poetry.masonry.api"
|
|
4
|
-
|
|
5
|
-
[tool.poetry.scripts]
|
|
6
|
-
jsonschema-cli2 = 'jsonschema_cli2.cli:run'
|
|
7
|
-
|
|
8
|
-
[tool.poetry]
|
|
9
|
-
name = "jsonschema-cli2"
|
|
10
|
-
version = "0.2.0"
|
|
11
|
-
description = "A thin wrapper over to allow validating shcemas easily using simple CLI commands."
|
|
12
|
-
authors = ["Solairen <solairen@solairen.tech>"]
|
|
13
|
-
readme = 'README.md'
|
|
14
|
-
|
|
15
|
-
[tool.poetry.dependencies]
|
|
16
|
-
python = ">=3.8"
|
|
17
|
-
pyyaml = ">=5.3.1"
|
|
18
|
-
jsonschema = ">=3.2.0"
|
|
19
|
-
|
|
20
|
-
[tool.poetry.dev-dependencies]
|
|
21
|
-
flake8 = ">=3.8.2"
|
|
22
|
-
black = ">=19.10b0"
|
|
23
|
-
flake8-black = ">=0.2.0"
|
|
24
|
-
flake8-import-order = ">=0.18.1"
|
|
25
|
-
flake8-blind-except = ">=0.1.1"
|
|
26
|
-
flake8-builtins = ">=1.5.3"
|
|
27
|
-
flake8-logging-format = ">=0.6.0"
|
|
28
|
-
flake8-docstrings = ">=1.5.0"
|
|
29
|
-
flake8-rst-docstrings = ">=0.0.13"
|
|
30
|
-
ipython = ">=7.14.0"
|
|
31
|
-
ipdb = ">=0.13.2"
|
|
32
|
-
pytest = ">=5.4.2"
|
|
33
|
-
pytest-mock = ">=3.1.0"
|
|
34
|
-
twine = ">=3.1.1"
|
|
35
|
-
|
|
36
|
-
[tool.black]
|
|
37
|
-
line-length = 120
|
|
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
|