pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 16 Nov 2022 15:39:10 +0100
branchstable
changeset 49577 b3480822a251
parent 47881 58fe6d127a01
permissions -rw-r--r--
matcher: do not prepend '.*' to pattern using ^ after flags Since the previous commit (fixing wider issue), the code generated strange regex. This is now fixed and tested.

[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