pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Wed, 23 Nov 2022 15:50:20 -0500
changeset 49649 df5d3b0d6472
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
typing: add missing signature for mercurial.cext.parsers.parse_index2() Flagged by pytype 2022.11.18 when the cext stubs are made visible to it. There are very likely other signatures that are missing, but this is enough to keep it happy for now.

[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