pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Wed, 14 Aug 2024 03:25:16 -0400
changeset 51801 62b25293b620
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
typing: correct a type hint in `mercurial.manifest` Obvious typo that was flagged by PyCharm.

[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