1
0
Fork 0
openapi-pydantic/pyproject.toml
Daniel Baumann 97e6d74bac
Adding upstream version 0.5.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-04 22:22:32 +02:00

57 lines
1.3 KiB
TOML

[tool.poetry]
name = "openapi-pydantic"
version = "0.5.1"
description = "Pydantic OpenAPI schema implementation"
authors = ["Mike Oakley <mike-oakley@users.noreply.github.com>"]
readme = "README.md"
repository = "https://github.com/mike-oakley/openapi-pydantic"
license = "MIT"
keywords = [
"openapi",
"schema",
"parser",
"pydantic",
"validation",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Pydantic",
]
include = ["openapi_pydantic/py.typed"]
[tool.poetry.urls]
changelog = "https://github.com/mike-oakley/openapi-pydantic/releases"
[tool.poetry.dependencies]
python = "^3.8"
pydantic = ">=1.8"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
openapi-spec-validator = "^0.7.0"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
mypy = "^1.8.0"
pre-commit = "^2.16.0"
ruff = "^0.7.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
warn_return_any = true
strict = true
disallow_any_generics = false
implicit_reexport = false
show_error_codes = true
files = ["openapi_pydantic/", "tests/"]
plugins = ["pydantic.mypy"]