1[tool:pytest]
2minversion = 3.0
3strict = true
4addopts = -ra
5testpaths = tests
6filterwarnings =
7	once::Warning
8
9[bdist_wheel]
10universal = 1
11
12[metadata]
13license_file = LICENSE
14
15[isort]
16atomic = true
17force_grid_wrap = 0
18include_trailing_comma = true
19lines_after_imports = 2
20lines_between_types = 1
21multi_line_output = 3
22not_skip = __init__.py
23use_parentheses = true
24known_first_party = service_identity
25known_third_party = OpenSSL,attr,cryptography,pyasn1,pyasn1_modules,pytest,setuptools,six
26
27[egg_info]
28tag_build =
29tag_date = 0
30
31