Coverage for src/jsoncrack_for_sphinx/__init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.10.0, created at 2025-07-24 22:26 +0000

1""" 

2Sphinx extension for automatically adding JSON schemas to documentation. 

3 

4This extension integrates with JSONCrack to generate beautiful 

5interactive visualizations of JSON schemas and automatically includes them in 

6Sphinx documentation based on function and method names. 

7""" 

8 

9__version__ = "0.1.1" 

10__author__ = "Miskler" 

11 

12# Import main modules for easy access 

13from . import config, fixtures, utils 

14 

15# Backward compatibility imports 

16from .core import extension 

17from .core.extension import setup 

18from .schema import schema_finder 

19 

20# Keep __all__ minimal for public API 

21__all__ = [ 

22 "setup", 

23]