python3-anticaptcha/pyproject.toml

30 lines
389 B
TOML

[tool.black]
line-length = 120
target-version = ['py310']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 120
length_sort = true
[tool.pytest.ini_options]
minversion = "7.0"
asyncio_mode = "auto"
testpaths = [
"tests",
]
addopts = "-vv --tb=short --durations=5"