cookiecutter.__main__   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
"""Allow cookiecutter to be executable through `python -m cookiecutter`."""
2
from cookiecutter.cli import main
3
4
5
if __name__ == "__main__":  # pragma: no cover
6
    main(prog_name="cookiecutter")
7