pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Fri, 20 Sep 2024 00:04:09 -0400
changeset 51887 1d95a87813ad
parent 48004 58fe6d127a01
permissions -rw-r--r--
typing: add type annotations to the `mercurial.util.filestat` class It's referenced in the `vfs` classes, so get this out of the way to help there. The `TypeVar` definition and its usage was copied from the existing `util.pyi` file.

[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