2020-09-17 03:04:11 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "tornado-openapi3"
|
2021-01-18 18:38:32 +00:00
|
|
|
version = "0.2.4"
|
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"
|
2021-01-13 19:33:39 +00:00
|
|
|
ietfparse = "^1.7.0"
|
2021-03-18 20:37:34 +00:00
|
|
|
typing-extensions = "^3.7.4"
|
2020-09-17 03:04:11 +00:00
|
|
|
|
|
|
|
[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 = "*"
|
2021-02-26 17:03:04 +00:00
|
|
|
sphinx = "^3.5.1"
|
|
|
|
sphinx-rtd-theme = "^0.5.1"
|
|
|
|
pylint = "^2.7.1"
|
2020-09-17 03:04:11 +00:00
|
|
|
|
2020-12-05 04:04:14 +00:00
|
|
|
[tool.coverage.report]
|
|
|
|
fail_under = 100
|
|
|
|
show_missing = true
|
|
|
|
|
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"
|