|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "{{{packageName}}}" |
3 | 3 | version = "{{{packageVersion}}}" |
4 | 4 | description = "{{{appName}}}" |
5 | | -authors = ["{{infoName}}{{^infoName}}OpenAPI Generator Community{{/infoName}} <{{infoEmail}}{{^infoEmail}}team@openapitools.org{{/infoEmail}}>"] |
| 5 | +authors = [ |
| 6 | + {name = "{{infoName}}{{^infoName}}OpenAPI Generator Community{{/infoName}}",email = "{{infoEmail}}{{^infoEmail}}team@openapitools.org{{/infoEmail}}"}, |
| 7 | +] |
6 | 8 | license = "{{{licenseInfo}}}{{^licenseInfo}}NoLicense{{/licenseInfo}}" |
7 | 9 | readme = "README.md" |
8 | | -repository = "https://{{{gitHost}}}/{{{gitUserId}}}/{{{gitRepoId}}}" |
9 | 10 | keywords = ["OpenAPI", "OpenAPI-Generator", "{{{appName}}}"] |
10 | | -include = ["{{packageName}}/py.typed"] |
11 | | - |
12 | | -[tool.poetry.dependencies] |
13 | | -python = "^3.9" |
| 11 | +requires-python = "^3.9" |
14 | 12 |
|
15 | | -urllib3 = ">= 2.1.0, < 3.0.0" |
16 | | -python-dateutil = ">= 2.8.2" |
| 13 | +dependencies = [ |
| 14 | + "urllib3 (>=2.1.0,<3.0.0)", |
| 15 | + "python-dateutil (>=2.8.2)", |
17 | 16 | {{#asyncio}} |
18 | | -aiohttp = ">= 3.8.4" |
19 | | -aiohttp-retry = ">= 2.8.3" |
| 17 | + "aiohttp (>=3.8.4)", |
| 18 | + "aiohttp-retry (>=2.8.3)", |
20 | 19 | {{/asyncio}} |
21 | 20 | {{#tornado}} |
22 | | -tornado = ">=4.2, <5" |
| 21 | + "tornado (>=4.2,<5)", |
23 | 22 | {{/tornado}} |
24 | 23 | {{#hasHttpSignatureMethods}} |
25 | | -pem = ">= 19.3.0" |
26 | | -pycryptodome = ">= 3.9.0" |
| 24 | + "pem (>=19.3.0)", |
| 25 | + "pycryptodome (>=3.9.0)", |
27 | 26 | {{/hasHttpSignatureMethods}} |
28 | | -pydantic = ">= 2" |
29 | | -typing-extensions = ">= 4.7.1" |
| 27 | + "pydantic (>=2)", |
| 28 | + "typing-extensions (>=4.7.1)" |
| 29 | +] |
| 30 | + |
| 31 | +[tool.poetry] |
| 32 | +requires-poetry = ">=2.0" |
30 | 33 |
|
31 | | -[tool.poetry.dev-dependencies] |
| 34 | +[tool.poetry.group.dev.dependencies] |
32 | 35 | pytest = ">= 7.2.1" |
33 | 36 | pytest-cov = ">= 2.8.1" |
34 | 37 | tox = ">= 3.9.0" |
|
0 commit comments