pyproject.toml
author Georges Racinet <georges.racinet@octobus.net>
Mon, 11 Mar 2024 13:36:25 +0100
branchstable
changeset 51471 5633de951d34
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
rust-matchers: raw regular expression builder Extracting this `re_builder()` from `re_matcher()` makes it reusable in more general cases than matching `HgPath` instances and would help reducing code duplication in RHGitaly.

[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