pyproject.toml
author pacien <pacien.trangirard@pacien.net>
Sun, 16 Apr 2023 23:48:24 +0200
changeset 50444 0729d011c542
parent 48004 58fe6d127a01
permissions -rw-r--r--
tests: add test ignore list for nix Some tests cannot run properly in the nix sandbox. This adds a list of tests to ignore when running in that context.

[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