pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 16 Feb 2023 02:19:56 +0100
changeset 50074 a2def50142ea
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
dirstate: document the functions that need consolidation They are more functions that make the dirstate dirty but does not currently enforce a clean change scoping, we add comments in front of each of them so clarify this. There is no urgency to it, but the world will be a better place when all of them have proper scoping in place.

[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