pyproject.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Wed, 02 Mar 2022 17:51:27 -0800
changeset 48960 57b58413dad1
parent 47881 58fe6d127a01
permissions -rw-r--r--
pycompat: remove first not ispy3 block We now require Python 3. So we can remove the first block supporting Python 2. Differential Revision: https://phab.mercurial-scm.org/D12247

[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