pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 19 Jun 2024 18:06:50 +0200
changeset 51858 2fd44b3dcc33
parent 48004 58fe6d127a01
permissions -rw-r--r--
revlog: use the method to check if the revlog is being written to This was probably fine, but it could become not fine at some point.

[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