-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "openapi-to-fastapi"
version = "0.22.0"
description = "Create FastAPI routes from OpenAPI spec"
authors = ["IOXIO Ltd"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/ioxiocom/openapi-to-fastapi"
packages = [
{include="openapi_to_fastapi", from="."}
]
[tool.poetry.scripts]
openapi-validator = "openapi_to_fastapi.cli:cli_validate_specs"
[tool.poetry.dependencies]
python = "^3.10"
datamodel-code-generator = "^0.35.0"
fastapi = "^0.121.1"
click = "^8.3.0"
coloredlogs = "^15.0.1"
pydantic = {version = "^2.12.4", extras = ["email"]}
[tool.poetry.group.dev.dependencies]
isort = "^5.13.2"
pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
flake8 = "^7.2.0"
mypy = "^1.15.0"
invoke = "^2.2.0"
httpx = "^0.27.2"
syrupy = "^4.7.2"
[tool.skjold]
report_only = false
sources = ["pyup", "gemnasium"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"