jsonschema-cli2 0.0.1__tar.gz → 0.3.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,18 +1,25 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jsonschema-cli2
3
- Version: 0.0.1
4
- Summary: A thin wrapper over [Python Jsonschema](https://github.com/Julian/jsonschema) to allow validating shcemas easily using simple CLI commands.
5
- Author: Solairen
3
+ Version: 0.3.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
- Requires-Python: >=3.6
7
+ Requires-Python: >=3.8
8
+ Classifier: Development Status :: 4 - Beta
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
- Classifier: Programming Language :: Python :: 3.6
10
- Classifier: Programming Language :: Python :: 3.7
11
15
  Classifier: Programming Language :: Python :: 3.8
12
16
  Classifier: Programming Language :: Python :: 3.9
13
17
  Classifier: Programming Language :: Python :: 3.10
14
18
  Classifier: Programming Language :: Python :: 3.11
15
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
16
23
  Requires-Dist: jsonschema (>=3.2.0)
17
24
  Requires-Dist: pyyaml (>=5.3.1)
18
25
  Description-Content-Type: text/markdown
@@ -25,7 +32,7 @@ A thin wrapper over [Python Jsonschema](https://github.com/Julian/jsonschema) to
25
32
 
26
33
  ## Installing
27
34
 
28
- `pip install jsonschema-cli`
35
+ `pip install jsonschema-cli2`
29
36
 
30
37
  ## Security
31
38
 
@@ -6,7 +6,7 @@ A thin wrapper over [Python Jsonschema](https://github.com/Julian/jsonschema) to
6
6
 
7
7
  ## Installing
8
8
 
9
- `pip install jsonschema-cli`
9
+ `pip install jsonschema-cli2`
10
10
 
11
11
  ## Security
12
12
 
@@ -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 = "0.3.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 :: 4 - Beta",
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.project.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.0.1"
11
- description = "A thin wrapper over [Python Jsonschema](https://github.com/Julian/jsonschema) 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.6"
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