[build-system] requires = ["poetry_core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry] name = "behave-utils" version = "0.2" description = "Utilities for writing Behave step implementations" license = "Apache-2.0" readme = "README.md" repository = "https://code.kodo.org.uk/dom/behave-utils" authors = [ "Dominik Sekotill ", ] packages = [ { include = "behave_utils" }, { include = "behave-stubs", from = "stubs" }, ] include = [ "stubs", ] [tool.poetry.dependencies] python = "~=3.9" behave = "~=1.2" jsonpath-python = "~=1.0" parse = "~=1.19" requests = "~=2.26" [tool.isort] force_single_line = true [tool.mypy] strict = true warn_unused_configs = true warn_unreachable = true mypy_path = ["stubs"]