[tool.black] line-length = 79 include = '\.pyi?$' exclude = ''' /( \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist | docs )/ ''' [tool.isort] profile = "black" multi_line_output = 3 [tool.coverage.paths] source = ["dscript"] [tool.pytest.ini_options] filterwarnings = [ "ignore::UserWarning", "ignore::DeprecationWarning", "ignore::PendingDeprecationWarning", ] python_files = "test_*.py" testpaths = [ "dscript/tests", ]