pytest-bdd/pyproject.toml

23 lines
461 B
TOML
Raw Normal View History

[build-system]
requires = ["setuptools>=58", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ["py37", "py38", "py39", "py310"]
[tool.isort]
profile = "black"
line_length = 120
multi_line_output = 3
[tool.mypy]
python_version = "3.6"
warn_return_any = true
warn_unused_configs = true
files = "pytest_bdd/**/*.py"
[[tool.mypy.overrides]]
2021-10-20 23:15:03 +08:00
module = ["parse", "parse_type", "glob2"]
ignore_missing_imports = true