pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Tue, 22 Mar 2022 16:33:18 +0100
changeset 49044 be9bf75a837c
parent 48004 58fe6d127a01
permissions -rw-r--r--
dirstate: remove v1_* methods from Python/C/Rust shared API These methods are used for v1 parsing by their respective implementations, but do not need to be shared between them. Differential Revision: https://phab.mercurial-scm.org/D12447

[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