pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Thu, 03 Mar 2022 08:06:37 -0800
changeset 48905 7eebe5630bcc
parent 48004 58fe6d127a01
permissions -rw-r--r--
hgweb: remove Python 3 conditional We probably have a better tobytes() implementation somewhere in pycompat. But I don't want to bloat scope of this commit. Differential Revision: https://phab.mercurial-scm.org/D12308

[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