pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 11 Mar 2024 01:20:12 +0100
changeset 51469 d54f0692820d
parent 48004 58fe6d127a01
permissions -rw-r--r--
repoview: prevent `None` to be passed as the filtername We let such instantiation slip in a previous commit, so we add an explicit check to prevent it to happen in the future.

[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