pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 08 Jul 2024 16:44:07 +0200
branchstable
changeset 51659 d9faa71a57f6
parent 47881 58fe6d127a01
permissions -rw-r--r--
test-check: don't report distutils as a local import On python 3.12 this is wrongly reported as a local import. So we adjust the checker to avoid 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