pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 08 Mar 2023 11:01:11 +0100
changeset 50399 bcf54837241d
parent 48004 58fe6d127a01
permissions -rw-r--r--
bundle: prevent implicite bundling of internal changeset Now that the two mains source of on-disk bundle are preventing the inclusion of internal changesets in their bundling. We can add a lower level check that would prevent any other leakage of internal-phase changesets. We keep the door open to some usage, like the temporary bundle using during strip for example.

[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