pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 25 May 2022 16:50:00 +0200
branchstable
changeset 49375 044e42ae45d9
parent 48004 58fe6d127a01
permissions -rw-r--r--
rhg: add error message for paths outside the repository when cwd != root This mirrors the Python implementation. The relative path handling should probably be refactored into a util, but it it out of scope for this change.

[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