tornado-openapi3/pyproject.toml

28 lines
579 B
TOML
Raw Normal View History

2020-09-17 03:04:11 +00:00
[tool.poetry]
name = "tornado-openapi3"
version = "0.1.0"
description = "Tornado OpenAPI 3 request and response validation"
authors = ["Correl Roush <correl@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
tornado = "^6"
openapi-core = "^0.13.4"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
mypy = "^0.782"
hypothesis = "^5.35.3"
flake8 = "^3.8.3"
pytest = "^6.0.2"
pytest-flake8 = "^1.0.6"
pytest-mypy = "^0.7.0"
[tool.pytest.ini_options]
addopts = "--flake8 --mypy"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"