openapi-generator-cli 7.10.0.post0__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,28 +1,27 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: openapi-generator-cli
3
- Version: 7.10.0.post0
3
+ Version: 7.11.0.post0
4
4
  Summary: CLI for openapi generator
5
- Home-page: https://openapi-generator.tech
6
5
  License: APACHE 2.0
7
- Keywords: openapi,generator,cli
6
+ Keywords: cli,generator,openapi
8
7
  Author: OpenAPI Generator community
9
8
  Author-email: team@openapitools.org
10
9
  Requires-Python: >=3.9,<4
11
10
  Classifier: License :: OSI Approved :: Apache Software License
12
- Classifier: License :: Other/Proprietary License
13
11
  Classifier: Programming Language :: Python
14
- Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3 :: Only
15
13
  Classifier: Programming Language :: Python :: 3.9
16
14
  Classifier: Programming Language :: Python :: 3.10
17
15
  Classifier: Programming Language :: Python :: 3.11
18
16
  Classifier: Programming Language :: Python :: 3.12
19
17
  Classifier: Programming Language :: Python :: 3.13
20
- Classifier: Programming Language :: Python :: 3 :: Only
21
18
  Classifier: Programming Language :: Python :: Implementation :: CPython
22
19
  Classifier: Programming Language :: Python :: Implementation :: PyPy
20
+ Classifier: Typing :: Typed
23
21
  Provides-Extra: jdk4py
24
- 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")
25
23
  Project-URL: Documentation, https://github.com/OpenAPITools/openapi-generator#3---usage
24
+ Project-URL: Homepage, https://openapi-generator.tech
26
25
  Project-URL: Repository, https://github.com/OpenAPITools/openapi-generator
27
26
  Description-Content-Type: text/markdown
28
27
 
@@ -1,57 +1,63 @@
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.10.0.post0"
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
- mypy = ">=0.991,<1.14"
53
+ mypy = ">=0.991,<1.15"
45
54
  pre-commit = ">=2.20,<5.0"
46
55
  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