pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 11 Jun 2022 00:56:50 +0200
changeset 49355 0540c1628fd4
parent 48004 58fe6d127a01
permissions -rw-r--r--
sparse: use None as the sparse matcher value when disabled This create a clear signal for when the feature is unused. We could also create an `alwaysmatcher`, but using None is more explicit, so I went for it.

[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