pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 21 Jan 2022 00:54:15 +0100
changeset 48634 11e5cb170d36
parent 47881 58fe6d127a01
permissions -rw-r--r--
test-http-bad-server: factor code dealing with "write" in the new object This will make sure both `sendall` and `write` do the same processing and make it simpler to update that processing in the future. Differential Revision: https://phab.mercurial-scm.org/D12043

[build-system]
requires = ["setuptools", "wheel"]

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true