pyproject.toml
author Anton Shestakov <av6@dwimlabs.net>
Wed, 04 May 2022 13:53:12 +0400
branchstable
changeset 49205 45e71954612c
parent 48004 58fe6d127a01
permissions -rw-r--r--
doc: use an absolute path in sys.path The idea and rationale is similar to https://phab.mercurial-scm.org/D12599 (landed as 1b6e381521c5). Differential Revision: https://phab.mercurial-scm.org/D12622

[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