src/eric7/DebugClients/Python/coverage/__main__.py@b99e7fd55fd3
src/eric7/DebugClients/Python/coverage/__main__.py
Thu, 07 Jul 2022 11:23:56 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 07 Jul 2022 11:23:56 +0200
- branch
- eric7
- changeset 9209
- b99e7fd55fd3
- parent 8312
-
eric7/DebugClients/Python/coverage/__main__.py@800c432b34c8
- permissions
- -rw-r--r--
Reorganized the project structure to use the source layout in order to support up-to-date build systems with "pyproject.toml".
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
"""Coverage.py's main entry point."""
import sys
from coverage.cmdline import main
sys.exit(main())