From 2795117d08d55f85d3868652fe69bd505dcc76dd Mon Sep 17 00:00:00 2001 From: maffettone Date: Fri, 5 Apr 2024 10:57:19 -0700 Subject: [PATCH] maint: add pyproject toml for black --- pyproject.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b64c25a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[tool.black] +line-length = 115 +include = '\.pyi?$' +exclude = ''' +( + /( + \.eggs # exclude a few common directories in the + | \.git # root of the project + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | \.pytest_cache + | _build + | build + | buck-out + | build + | dist + | docs + | blib2to3 + | tests/data + )/ + | versioneer.py +) +'''