diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0c125ca --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.black] +line-length = 120 +target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] + +[tool.isort] +profile = "black" +combine_as_imports = true +line_length = 159 +src_paths = ["."] + +[tool.pytest.ini_options] +markers = [ + "production", +]