pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 21 Feb 2024 11:59:28 +0100
changeset 51415 1df8d84e7c99
parent 48004 58fe6d127a01
permissions -rw-r--r--
phases: gather the logic for phasesets update in a single method This logic is duplicated around for no good reason, we gather it in a single place. The conditional is the new function are a bit weird as we about going to extend it soon.

[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