Coverage for src/clauth/__init__.py: 67%
6 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-09-26 15:27 -0400
« prev ^ index » next coverage.py v7.10.7, created at 2025-09-26 15:27 -0400
1# Copyright (c) 2025 Mahmood Khordoo
2#
3# This software is licensed under the MIT License.
4# See the LICENSE file in the root directory for details.
6"""
7CLAUTH - Claude + AWS SSO helper for Bedrock.
9A Python CLI tool that simplifies setting up Claude Code with AWS Bedrock
10authentication through AWS SSO. Provides automated AWS profile configuration,
11model discovery, and Claude Code CLI launching.
12"""
13from importlib.metadata import version, PackageNotFoundError
15_DIST_NAME = "clauth"
17try:
18 __version__ = version(_DIST_NAME)
19except PackageNotFoundError:
20 __version__ = "0.0.0"