pyproject.toml
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 10 Feb 2022 15:27:58 -0800
changeset 48753 d9af7c1fb619
parent 48004 58fe6d127a01
permissions -rw-r--r--
simplemerge: let filemerge check for binary inputs This is similar to the previous patch, but here we put a specialized copy of `simplemerge._verifytext()` in the the `filemerge` module instead. Differential Revision: https://phab.mercurial-scm.org/D12147

[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