pyproject.toml
author Anton Shestakov <av6@dwimlabs.net>
Wed, 31 May 2023 12:02:56 -0300
changeset 50549 9dcb00842769
parent 48004 58fe6d127a01
permissions -rw-r--r--
debug: `isinstance(a, x) or isinstance(a, y)` is `isinstance(a, (x, y))`

[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