pyproject.toml
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 20 Jan 2022 14:46:16 -0800
changeset 48576 1a84758b4fca
parent 48004 58fe6d127a01
permissions -rw-r--r--
filemerge: remove unnecessary check for empty string Looking at the statement just before, the string is clearly never empty (or otherwise falsy). Differential Revision: https://phab.mercurial-scm.org/D12011

[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