openapi-generator-cli 7.17.0__tar.gz → 7.19.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.
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/PKG-INFO +3 -4
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/README.md +1 -1
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/openapi_generator_cli/__init__.py +1 -1
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/openapi_generator_cli/openapi-generator.jar +0 -0
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/pyproject.toml +4 -5
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/.gitignore +0 -0
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/LICENSE +0 -0
- {openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/openapi_generator_cli/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: openapi-generator-cli
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.19.0
|
|
4
4
|
Summary: CLI for openapi generator
|
|
5
5
|
Project-URL: Documentation, https://github.com/OpenAPITools/openapi-generator#3---usage
|
|
6
6
|
Project-URL: Homepage, https://openapi-generator.tech
|
|
@@ -12,7 +12,6 @@ Keywords: cli,generator,openapi
|
|
|
12
12
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
13
|
Classifier: Programming Language :: Python
|
|
14
14
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -20,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
20
19
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
21
20
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
22
21
|
Classifier: Typing :: Typed
|
|
23
|
-
Requires-Python: <4,>=3.
|
|
22
|
+
Requires-Python: <4,>=3.10
|
|
24
23
|
Provides-Extra: jdk4py
|
|
25
24
|
Requires-Dist: jdk4py<22,>=21.0.4.1; (python_version >= '3.10') and extra == 'jdk4py'
|
|
26
25
|
Description-Content-Type: text/markdown
|
|
@@ -65,7 +64,7 @@ pip install openapi-generator-cli
|
|
|
65
64
|
pip install openapi-generator-cli==4.3.1
|
|
66
65
|
```
|
|
67
66
|
|
|
68
|
-
You can also install with [`jdk4py`] instead of `java` binary.
|
|
67
|
+
You can also install with [`jdk4py`] instead of `java` binary.
|
|
69
68
|
|
|
70
69
|
```sh
|
|
71
70
|
pip install openapi-generator-cli[jdk4py]
|
|
@@ -38,7 +38,7 @@ pip install openapi-generator-cli
|
|
|
38
38
|
pip install openapi-generator-cli==4.3.1
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
You can also install with [`jdk4py`] instead of `java` binary.
|
|
41
|
+
You can also install with [`jdk4py`] instead of `java` binary.
|
|
42
42
|
|
|
43
43
|
```sh
|
|
44
44
|
pip install openapi-generator-cli[jdk4py]
|
|
Binary file
|
|
@@ -4,7 +4,7 @@ requires = [ "hatchling" ]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "openapi-generator-cli"
|
|
7
|
-
version = "7.
|
|
7
|
+
version = "7.19.0"
|
|
8
8
|
description = "CLI for openapi generator"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
keywords = [
|
|
@@ -14,12 +14,11 @@ keywords = [
|
|
|
14
14
|
]
|
|
15
15
|
license = { text = "APACHE 2.0" }
|
|
16
16
|
authors = [ { name = "OpenAPI Generator community", email = "team@openapitools.org" } ]
|
|
17
|
-
requires-python = ">=3.
|
|
17
|
+
requires-python = ">=3.10,<4"
|
|
18
18
|
classifiers = [
|
|
19
19
|
"License :: OSI Approved :: Apache Software License",
|
|
20
20
|
"Programming Language :: Python",
|
|
21
21
|
"Programming Language :: Python :: 3 :: Only",
|
|
22
|
-
"Programming Language :: Python :: 3.9",
|
|
23
22
|
"Programming Language :: Python :: 3.10",
|
|
24
23
|
"Programming Language :: Python :: 3.11",
|
|
25
24
|
"Programming Language :: Python :: 3.12",
|
|
@@ -38,10 +37,10 @@ scripts.openapi-generator-cli = "openapi_generator_cli:cli"
|
|
|
38
37
|
|
|
39
38
|
[dependency-groups]
|
|
40
39
|
dev = [
|
|
41
|
-
"mypy>=0.991,<1.
|
|
40
|
+
"mypy>=0.991,<1.20",
|
|
42
41
|
"natsort>=8.4,<9",
|
|
43
42
|
"pre-commit>=2.20,<5",
|
|
44
|
-
"pytest>=7.2.2,<
|
|
43
|
+
"pytest>=7.2.2,<10",
|
|
45
44
|
"pytest-cov>=6",
|
|
46
45
|
"taskipy>=1.10.3,<2",
|
|
47
46
|
]
|
|
File without changes
|
|
File without changes
|
{openapi_generator_cli-7.17.0 → openapi_generator_cli-7.19.0}/openapi_generator_cli/py.typed
RENAMED
|
File without changes
|