-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (40 loc) · 888 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[aliases]
test=pytest
lint=flake8
[tool:pytest]
addopts =
--cov-report term
--cov-report html:build/reports/coverage_html
--cov-report xml:build/reports/coverage.xml
--cov=xdmenu
--verbose
--flake8
--doctest-modules
testpaths =
tests
xdmenu
norecursedirs = .svn _build tmp*
[flake8]
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The docs should not be checked
docs,
# This contains our built artifacts
build,
# This contains distribution that we don't want to check
dist,
# The command line entry point script is expected to fail some checks
__main__.py
show-source = True
doctests = True
[isort]
from_first = 1
known_standard_library = setuptools
known_first_party = ""
[sdist]
formats=gztar,zip
[bdist_wheel]
universal = 1