tornado-openapi3/pyproject.toml

46 lines
1 KiB
TOML
Raw Normal View History

2020-09-17 03:04:11 +00:00
[tool.poetry]
name = "tornado-openapi3"
2021-05-07 18:52:48 +00:00
version = "1.1.0"
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"
tornado = "^4 || ^5 || ^6"
openapi-core = "^0.14.0"
ietfparse = "^1.7.0"
typing-extensions = "^3.7.4"
2020-09-17 03:04:11 +00:00
[tool.poetry.dev-dependencies]
black = { version = "*", allow-prereleases = true }
2020-11-26 05:13:04 +00:00
coverage = "*"
mypy = "*"
hypothesis = "*"
flake8 = "*"
pytest = "*"
2020-12-05 00:33:06 +00:00
pytest-black = "*"
2020-11-26 05:13:04 +00:00
pytest-cov = "*"
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
[tool.coverage.report]
fail_under = 100
show_missing = true
2020-09-17 03:04:11 +00:00
[tool.pytest.ini_options]
addopts = "--cov=tornado_openapi3 --black --flake8 --mypy --ignore docs"
2020-09-17 03:04:11 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"