From 592762466a31458f736aff1733473591032e2738 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 11 2018 13:52:46 +0000 Subject: Start a documentation file for black using a pyproject.toml file Signed-off-by: Pierre-Yves Chibon --- diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1d506f7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[tool.black] +line-length = 79 +include = '\.py?$' +exclude = ''' +/( + \.git + | \.tox + | \.venv + | _build + | build + | dist + | tests + | lcl + | alembic + +)/ +''' +