sqil-core 0.0.2__py3-none-any.whl → 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
sqil_core/__init__.py CHANGED
@@ -1,3 +1,6 @@
1
- from .utils import extract_h5_data, read_param_dict
1
+ import sqil_core.fit as fit
2
+ import sqil_core.resonator as resonator
3
+ import sqil_core.utils as utils
4
+ from sqil_core.utils import *
2
5
 
3
- __all__ = ["extract_h5_data", "read_param_dict"]
6
+ __all__ = utils.__all__ + ["utils", "fit", "resonator"]
sqil_core/config.py ADDED
@@ -0,0 +1,13 @@
1
+ _EXCLUDED_PACKAGES = [
2
+ "os",
3
+ "sys",
4
+ "inspect",
5
+ "np",
6
+ "spopt",
7
+ "lmfit",
8
+ "h5py",
9
+ "json",
10
+ "tabulate",
11
+ "matplotlib",
12
+ "plt",
13
+ ]
@@ -0,0 +1,16 @@
1
+ from ._core import (
2
+ FitResult,
3
+ compute_adjusted_standard_errors,
4
+ compute_chi2,
5
+ fit_input,
6
+ fit_output,
7
+ )
8
+ from ._fit import (
9
+ fit_circle_algebraic,
10
+ fit_decaying_exp,
11
+ fit_decaying_oscillations,
12
+ fit_gaussian,
13
+ fit_lorentzian,
14
+ fit_qubit_relaxation_qp,
15
+ fit_skewed_lorentzian,
16
+ )