add config for kedro, isort, pytest

This commit is contained in:
Waylon Walker 2021-06-25 07:23:31 -05:00
parent b468e8f7c1
commit b74edfcc48

17
pyproject.toml Normal file
View file

@ -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"""