pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 17 Jun 2023 04:05:53 +0200
branchstable
changeset 50398 a45460e235a2
parent 47881 58fe6d127a01
permissions -rw-r--r--
re2: fix reporting of availability in `hg debuginstall` We add and use an official API to check is re2 is available. This prevent the bug previously in place were debuginstall was considering confusing `None` (i.e. non-initialized) and `False` (i.e. unavailable).

[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