openapi-generator-cli 7.11.0__tar.gz → 7.11.0.post0__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,26 +1,25 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: openapi-generator-cli
3
- Version: 7.11.0
3
+ Version: 7.11.0.post0
4
4
  Summary: CLI for openapi generator
5
5
  License: APACHE 2.0
6
- Keywords: openapi,generator,cli
6
+ Keywords: cli,generator,openapi
7
7
  Author: OpenAPI Generator community
8
8
  Author-email: team@openapitools.org
9
9
  Requires-Python: >=3.9,<4
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: License :: Other/Proprietary License
12
11
  Classifier: Programming Language :: Python
13
- Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
14
13
  Classifier: Programming Language :: Python :: 3.9
15
14
  Classifier: Programming Language :: Python :: 3.10
16
15
  Classifier: Programming Language :: Python :: 3.11
17
16
  Classifier: Programming Language :: Python :: 3.12
18
17
  Classifier: Programming Language :: Python :: 3.13
19
- Classifier: Programming Language :: Python :: 3 :: Only
20
18
  Classifier: Programming Language :: Python :: Implementation :: CPython
21
19
  Classifier: Programming Language :: Python :: Implementation :: PyPy
20
+ Classifier: Typing :: Typed
22
21
  Provides-Extra: jdk4py
23
- Requires-Dist: jdk4py (>=21.0.4.1,<22.0.0.0) ; (python_version >= "3.10") and (extra == "jdk4py")
22
+ Requires-Dist: jdk4py (>=21.0.4.1,<22) ; (python_version >= "3.10") and (extra == "jdk4py")
24
23
  Project-URL: Documentation, https://github.com/OpenAPITools/openapi-generator#3---usage
25
24
  Project-URL: Homepage, https://openapi-generator.tech
26
25
  Project-URL: Repository, https://github.com/OpenAPITools/openapi-generator
@@ -1,44 +1,53 @@
1
- # TODO: In Poetry 2.0 move into PEP 621 compatible configuration
2
-
3
1
  [build-system]
4
2
  build-backend = "poetry.core.masonry.api"
5
3
  requires = [
6
- "poetry-core",
4
+ "poetry-core>=2",
7
5
  ]
8
6
 
9
- [tool.poetry]
10
- version = "7.11.0"
7
+ [project]
8
+ name = "openapi-generator-cli"
9
+ version = "7.11.0.post0"
10
+ description = "CLI for openapi generator"
11
+ readme = "README.md"
12
+ keywords = [
13
+ "cli",
14
+ "generator",
15
+ "openapi",
16
+ ]
17
+ license = { text = "APACHE 2.0" }
11
18
  authors = [
12
- "OpenAPI Generator community <team@openapitools.org>",
19
+ { name = "OpenAPI Generator community", email = "team@openapitools.org" },
13
20
  ]
21
+ requires-python = ">=3.9,<4"
14
22
  classifiers = [
15
23
  "License :: OSI Approved :: Apache Software License",
16
24
  "Programming Language :: Python",
17
- "Programming Language :: Python :: 3",
18
25
  "Programming Language :: Python :: 3 :: Only",
26
+ "Programming Language :: Python :: 3.9",
27
+ "Programming Language :: Python :: 3.10",
28
+ "Programming Language :: Python :: 3.11",
29
+ "Programming Language :: Python :: 3.12",
30
+ "Programming Language :: Python :: 3.13",
19
31
  "Programming Language :: Python :: Implementation :: CPython",
20
32
  "Programming Language :: Python :: Implementation :: PyPy",
33
+ "Typing :: Typed",
21
34
  ]
22
- description = "CLI for openapi generator"
23
- keywords = [
24
- "openapi",
25
- "generator",
26
- "cli",
35
+ optional-dependencies.jdk4py = [
36
+ "jdk4py>=21.0.4.1,<22; python_version>='3.10'",
27
37
  ]
28
- name = "openapi-generator-cli"
38
+ urls.Documentation = "https://github.com/OpenAPITools/openapi-generator#3---usage"
39
+ urls.Homepage = "https://openapi-generator.tech"
40
+ urls.Repository = "https://github.com/OpenAPITools/openapi-generator"
41
+ scripts.openapi-generator-cli = "openapi_generator_cli:cli"
42
+
43
+ [tool.poetry]
44
+ requires-poetry = ">=2.0"
29
45
  packages = [
30
46
  { include = "openapi_generator_cli" },
31
47
  ]
32
- include = [ "openapi_generator_cli/*.jar" ]
33
- license = "APACHE 2.0"
34
- readme = "README.md"
35
- homepage = "https://openapi-generator.tech"
36
- repository = "https://github.com/OpenAPITools/openapi-generator"
37
- documentation = "https://github.com/OpenAPITools/openapi-generator#3---usage"
38
-
39
- [tool.poetry.dependencies]
40
- python = ">=3.9,<4"
41
- jdk4py = { version = "^21.0.4.1", optional = true, python = ">=3.10" }
48
+ include = [
49
+ { path = "openapi_generator_cli/openapi-generator.jar", format = [ "sdist", "wheel" ] },
50
+ ]
42
51
 
43
52
  [tool.poetry.group.dev.dependencies]
44
53
  mypy = ">=0.991,<1.15"
@@ -47,11 +56,8 @@ taskipy = "^1.10.3"
47
56
  pytest = ">=7.2.2,<9.0.0"
48
57
  natsort = "^8.4.0"
49
58
 
50
- [tool.poetry.extras]
51
- jdk4py = [ "jdk4py" ]
52
-
53
- [tool.poetry.scripts]
54
- openapi-generator-cli = "openapi_generator_cli:cli"
59
+ [tool.poetry.requires-plugins]
60
+ poetry-plugin-shell = ">=1.0"
55
61
 
56
62
  [tool.black]
57
63
  line-length = 120