Coverage for src/csv_schema_validator/cli/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-12-23 15:34 +0100

1""" 

2CSV Schema Validator CLI - Command-line interface for CSV schema validation. 

3 

4This package provides a command-line interface for validating CSV files against 

5JSON schemas using the csv-schema-validator library. 

6""" 

7 

8from .cli import cli, show_help, show_version 

9 

10__version__ = "0.1.1" 

11__all__ = [ 

12 "cli", 

13 "show_help", 

14 "show_version", 

15]