python-benedict/pyproject.toml

40 lines
440 B
TOML
Raw Normal View History

2022-12-31 14:48:51 +00:00
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.black]
2023-02-13 14:50:26 +00:00
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
2022-10-18 12:19:24 +00:00
| venv
)/
'''
2023-04-05 15:35:38 +00:00
[tool.ruff]
ignore = [
"B905",
"E501",
]
line-length = 88
select = [
"B",
"B9",
"C",
"E",
"F",
"W",
]
[tool.ruff.mccabe]
max-complexity = 10