[tool.poetry] name = "tornado-openapi3" version = "0.2.1" description = "Tornado OpenAPI 3 request and response validation library" authors = ["Correl Roush "] license = "MIT" readme = "README.rst" repository = "https://github.com/correl/tornado-openapi3" homepage = "https://github.com/correl/tornado-openapi3" packages = [ { include = "tornado_openapi3" }, ] [tool.poetry.dependencies] python = "^3.7" tornado = "^4 || ^5 || ^6" openapi-core = "^0.13.4" [tool.poetry.dev-dependencies] black = { version = "*", allow-prereleases = true } coverage = "*" mypy = "*" hypothesis = "*" flake8 = "*" pytest = "*" pytest-black = "*" pytest-cov = "*" pytest-flake8 = "*" pytest-mypy = "*" [tool.pytest.ini_options] addopts = "--cov=tornado_openapi3 --black --flake8 --mypy" [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"