py-libp2p/pyproject.toml
2019-08-04 12:37:41 +08:00

23 lines
354 B
TOML

[tool.black]
line-length = 100
target_version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| \w*_pb2\w*\.py # pb2 files
)
'''