Coverage for jaxquantum/__init__.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.10.4, created at 2025-08-19 17:34 +0000

1""" 

2jaxquantum 

3""" 

4 

5import os 

6import json 

7 

8from .utils import * # noqa 

9from .core import * # noqa 

10 

11 

12with open( 

13 os.path.abspath(os.path.join(os.path.dirname(__file__), "PACKAGE.json")), "r" 

14) as _package_file: 

15 package_info = json.load(_package_file) 

16 

17__version__ = package_info["version"] 

18__author__ = package_info["authors"] 

19__credits__ = package_info["credits"]