pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 21 Feb 2022 12:44:41 -0700
changeset 49034 70df51a2c2ce
parent 47881 58fe6d127a01
permissions -rw-r--r--
tests: remove Python < 3 check We require Python 3 now. Differential Revision: https://phab.mercurial-scm.org/D12349

[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