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

8 statements  

« prev     ^ index     » next       coverage.py v7.6.1, created at 2024-09-23 04:59 +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 

13 

14__all__ = [ 

15 "SopsyCommandFailedError", 

16 "SopsyCommandNotFoundError", 

17 "SopsyConfigNotFoundError", 

18 "SopsyError", 

19 "SopsyUnparsableOutpoutTypeError", 

20 "Sops", 

21 "SopsyInOutType", 

22]