pyproject.toml
author Martin von Zweigbergk <martinvonz@google.com>
Mon, 07 Feb 2022 14:07:04 -0800
changeset 48758 7dad4665d223
parent 48004 58fe6d127a01
permissions -rw-r--r--
simplemerge: remove now-unused arguments The `ui` argument is no longer needed now that we don't handle `--print` in the library code. Differential Revision: https://phab.mercurial-scm.org/D12151

[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