pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 16 Feb 2023 03:08:00 +0100
changeset 50079 acd2a0267660
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
dirstate: simplify the shelve hack to not go through the disk We already have the data in memory, so why not simply keep the data in memory? This avoid abusing the `savebackup/restorebackup` logic and will make our life easier.

[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