2020-09-17 03:04:11 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "tornado-openapi3"
|
2020-12-04 18:38:02 +00:00
|
|
|
version = "0.2.1"
|
2020-09-18 04:22:35 +00:00
|
|
|
description = "Tornado OpenAPI 3 request and response validation library"
|
2020-09-17 03:04:11 +00:00
|
|
|
authors = ["Correl Roush <correl@gmail.com>"]
|
|
|
|
license = "MIT"
|
2020-09-18 04:22:35 +00:00
|
|
|
readme = "README.rst"
|
2020-12-04 18:38:02 +00:00
|
|
|
repository = "https://github.com/correl/tornado-openapi3"
|
|
|
|
homepage = "https://github.com/correl/tornado-openapi3"
|
2020-09-25 14:14:40 +00:00
|
|
|
packages = [
|
2020-09-25 14:55:54 +00:00
|
|
|
{ include = "tornado_openapi3" },
|
2020-09-25 14:14:40 +00:00
|
|
|
]
|
2020-09-17 03:04:11 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.7"
|
2020-09-25 14:15:06 +00:00
|
|
|
tornado = "^4 || ^5 || ^6"
|
2020-09-17 03:04:11 +00:00
|
|
|
openapi-core = "^0.13.4"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-09-17 03:13:05 +00:00
|
|
|
black = { version = "*", allow-prereleases = true }
|
2020-11-26 05:13:04 +00:00
|
|
|
coverage = "*"
|
2020-09-17 03:13:05 +00:00
|
|
|
mypy = "*"
|
|
|
|
hypothesis = "*"
|
|
|
|
flake8 = "*"
|
|
|
|
pytest = "*"
|
2020-12-05 00:33:06 +00:00
|
|
|
pytest-black = "*"
|
2020-11-26 05:13:04 +00:00
|
|
|
pytest-cov = "*"
|
2020-09-17 03:13:05 +00:00
|
|
|
pytest-flake8 = "*"
|
|
|
|
pytest-mypy = "*"
|
2020-09-17 03:04:11 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2020-12-05 00:33:06 +00:00
|
|
|
addopts = "--cov=tornado_openapi3 --black --flake8 --mypy"
|
2020-09-17 03:04:11 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=0.12"]
|
|
|
|
build-backend = "poetry.masonry.api"
|