moved python black configuration to pyproject.toml and fixed bad exclude

This commit is contained in:
Blake Harnden 2020-07-14 13:33:40 -07:00
parent f8b0ab6ec3
commit 80194b3e38
4 changed files with 9 additions and 6 deletions

View file

@ -39,6 +39,11 @@ force_grid_wrap = 0
use_parentheses = "True"
line_length = 88
[tool.black]
line_length = 88
exclude = ".+_pb2.*.py|doc/|build/|__pycache__/"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"