setup.cfg: set universal wheel; use zip as sdist format; add test=pytest alias; add default pytest config

This commit is contained in:
Cosimo Lupo 2016-09-11 16:24:03 +01:00
parent a14810a036
commit 730a673c3a

20
setup.cfg Normal file
View File

@ -0,0 +1,20 @@
[wheel]
universal = 1
[sdist]
formats = zip
[aliases]
test = pytest
[tool:pytest]
minversion = 3.0.2
testpaths =
Lib/ufoLib
addopts =
# run py.test in verbose mode
-v
# show extra test summary info
-r a
# run doctests in all .py modules
--doctest-modules