pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 23 Mar 2022 15:18:12 +0100
changeset 49097 791430b0b2d2
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
rust-dirstatemap: add `set_tracked` method This is the new dirstate API that has already been moved to in Python. It will be used in place of the old `addfile`/`removefile` one. Differential Revision: https://phab.mercurial-scm.org/D12495

[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