pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 02 May 2022 11:27:20 +0200
changeset 49826 c84844cd523a
parent 48004 58fe6d127a01
permissions -rw-r--r--
verify: also check dirstate The dirstate already is capable of verifying its integrity (although v2 features are not yet checked), let's run that code in `hg verify`.

[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