diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..0262cfeda --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[tool.black] +line-length = 88 +experimental-string-processing = true +target-version = ['py37', 'py38', 'py39', 'py310'] +include = '\.pyi?$' +# 'extend-exclude' excludes files or directories in addition to the defaults +force-exclude = ''' +/( + .*migrations.* + |.*config.* + |.*__pycache__ +)/ +''' + +[tool.isort] +profile = "black" +skip=['migrations', 'config', '__pycache__'] \ No newline at end of file