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

9 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-07-08 20:24 +0000

1"""SOPSy, a Python wrapper around SOPS. 

2 

3SOPS binary must be installed and available in your `$PATH`. 

4""" 

5 

6from sopsy.errors import SopsyCommandFailedError 

7from sopsy.errors import SopsyCommandNotFoundError 

8from sopsy.errors import SopsyConfigNotFoundError 

9from sopsy.errors import SopsyError 

10from sopsy.errors import SopsyUnparsableOutpoutTypeError 

11from sopsy.sopsy import Sops 

12from sopsy.sopsy import SopsyInOutType 

13from sopsy.sopsy import SopsyInputSource 

14 

15__all__ = [ 

16 "Sops", 

17 "SopsyCommandFailedError", 

18 "SopsyCommandNotFoundError", 

19 "SopsyConfigNotFoundError", 

20 "SopsyError", 

21 "SopsyInOutType", 

22 "SopsyInputSource", 

23 "SopsyUnparsableOutpoutTypeError", 

24]