1[metadata]
2license_file = LICENSE
3
4[aliases]
5test=pytest
6
7[tool:pytest]
8addopts = -vv --cov=./
9filterwarnings =
10    ignore::ResourceWarning
11
12[flake8]
13exclude =
14    .git,
15    __pycache__,
16    build,
17    dist,
18    htmlcov,
19    docs,
20    pyked/tests,
21    setup.py
22max-line-length = 100
23