From b74edfcc485570b20307f79fc6fb239d0be32979 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Fri, 25 Jun 2021 07:23:31 -0500 Subject: [PATCH] add config for kedro, isort, pytest --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pyproject.toml 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"""