pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 14 Apr 2024 02:27:10 +0200
changeset 51593 b5500857e173
parent 48004 58fe6d127a01
permissions -rw-r--r--
proxy-vfs: also proxy the `audit` attribute In the previous changeset, we had to do a little dance to access the useful `audit` attribute. We now provide a proper accessors to it. We don't update the code in `perf.py` because it has to remain compatible with older version of Mercurial. This will just be nicer in the future.

[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