diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..72422ab --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[tool.kedro] +package_name = "pypi_list" +project_name = "Pypi List" +project_version = "0.0.2" + +[tool.isort] +multi_line_output = 3 +include_trailing_comma = true +force_grid_wrap = 0 +use_parentheses = true +line_length = 88 +known_third_party = "kedro" + +[tool.pytest.ini_options] +addopts = """ +--cov-report term-missing \ +--cov src/{{ cookiecutter.python_package }} -ra"""