pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 04 May 2022 15:48:13 +0200
branchstable
changeset 49157 5d610521a285
parent 48004 58fe6d127a01
permissions -rw-r--r--
test-dirstate: fix detection of Rust environment variable The Rust path never actually worked. This change also improves clarity of the comment. The next change will ensure we print something when this check fails. Differential Revision: https://phab.mercurial-scm.org/D12601

[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