pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 20 Dec 2023 22:17:03 +0100
changeset 51290 f4a0806081f2
parent 48004 58fe6d127a01
permissions -rw-r--r--
pytype: drop the now useless assert As the imported types are now used by type annotation, these ugly assert are no longer needed.

[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