mirror of
https://github.com/correl/tornado-openapi3.git
synced 2024-11-14 19:19:32 +00:00
28 lines
579 B
TOML
28 lines
579 B
TOML
|
[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"
|