Coverage for jaxquantum/__init__.py: 100%

7 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-07-17 21:51 +0000

1""" 

2jaxquantum 

3""" 

4 

5import os 

6 

7from .utils import * # noqa 

8from .core import * # noqa 

9 

10 

11with open( 

12 os.path.abspath(os.path.join(os.path.dirname(__file__), "VERSION.txt")), "r" 

13) as _ver_file: 

14 __version__ = _ver_file.read().rstrip() 

15 

16__author__ = "Shantanu Jha" 

17__credits__ = "EQuS"