1[wheel]
2universal = 1
3
4[sdist]
5formats = zip
6
7[aliases]
8test = pytest
9
10[metadata]
11license_file = LICENSE
12
13[tool:pytest]
14minversion = 2.8
15testpaths =
16	tests
17python_files =
18	*_test.py
19python_classes =
20	*Test
21addopts =
22	-v
23	-r a
24filterwarnings =
25	default::DeprecationWarning
26	default::PendingDeprecationWarning
27	ignore:The 'path':DeprecationWarning:.*defcon.*
28
29[egg_info]
30tag_build =
31tag_date = 0
32
33