pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Sun, 19 Feb 2023 00:04:53 -0500
changeset 50101 b900f40c343e
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
typing: disable `signature-mismatch` warnings on a few bytestr functions Recent versions of pytype complain about this, but it seems like expected behavior.

[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