pyproject.toml
author Kyle Lippincott <spectral@google.com>
Wed, 13 Apr 2022 12:14:17 -0700
branchstable
changeset 49060 532b649c1deb
parent 48004 58fe6d127a01
permissions -rw-r--r--
rebase: while rewriting desc hashes, ignore ambiguous prefix "hashes" If a repo is sufficiently large, a six digit number "hash prefix" can somewhat easily reference an ambiguous hash prefix. Differential Revision: https://phab.mercurial-scm.org/D12552

[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