pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 11 Jan 2022 09:56:03 +0100
changeset 48668 4a9570e389b2
parent 48004 58fe6d127a01
permissions -rw-r--r--
share-safe: add support for static-http repository We need to read the second requirements file in the static-http case too. Otherwise, static-http would miss most of the requirements and misbehave. Differential Revision: https://phab.mercurial-scm.org/D11996

[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