pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 19 May 2022 23:39:23 +0100
changeset 49226 e6b7c6fbeb48
parent 48004 58fe6d127a01
permissions -rw-r--r--
deltas: add code to display information about the result of `finddeltainfo` I have been looking into performance issue around pull and getting more information about the computation and time involved into applying each revision is very useful. There will be various way to use this new output, so I am introducing the code first.

[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