pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 02 May 2023 21:43:45 +0200
branchstable
changeset 50450 f930af431193
parent 48004 58fe6d127a01
permissions -rw-r--r--
revlog: test more complex file pattern for revlog split There have been a report of failure while splitting revlog. The file name involved was important. The pattern involved here are not problematic, but it help to setup the machinery to test multiple files, the actual fix and problematic file will arrive in a later changeset.

[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