pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 23 Mar 2022 17:13:18 +0100
changeset 49103 77dfde417e5e
parent 48004 58fe6d127a01
permissions -rw-r--r--
dirstatemap: remove `_insert_entry` This was needed as a compatibility layer for the Python and Rust implementations, but it is not called from anywhere in Rust anymore. The two remaining calls have been inlined. Differential Revision: https://phab.mercurial-scm.org/D12501

[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