pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Tue, 08 Mar 2022 19:10:19 -0800
changeset 48959 9ac1a4507bb3
parent 48004 58fe6d127a01
permissions -rw-r--r--
pycompat: remove check for Python >= 3.6 We dropped support for Python 3.5 so this is always true. Differential Revision: https://phab.mercurial-scm.org/D12363

[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