Coverage for src/pip_project_template/__main__.py: 100.00%
9 statements
« prev ^ index » next coverage.py v7.9.2, created at 2025-08-28 08:53 +1000
« prev ^ index » next coverage.py v7.9.2, created at 2025-08-28 08:53 +1000
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3# Timestamp: "2025-08-27 01:08:52 (ywatanabe)"
4# File: /home/ywatanabe/proj/pip-project-template/src/__main__.py
5# ----------------------------------------
6from __future__ import annotations
7import os
8__FILE__ = (
9 "./pip-project-template/src/__main__.py"
10)
11__DIR__ = os.path.dirname(__FILE__)
12# ----------------------------------------
13"""Main entry point for CLI."""
15import sys
17from .cli import main
19if __name__ == "__main__":
20 sys.exit(main())
22# EOF