funcnodes-span 0.1.6__tar.gz → 0.1.7__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: funcnodes-span
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary:
5
5
  Author: Kourosh Rezaei
6
6
  Author-email: kouroshrezaei90@gmail.com
@@ -4,7 +4,7 @@ from .normalization import NORM_NODE_SHELF as NORM
4
4
  from .smoothing import SMOOTH_NODE_SHELF as SMOOTH
5
5
  from .peak_analysis import PEAKS_NODE_SHELF as PEAK
6
6
 
7
- __version__ = "0.1.6"
7
+ __version__ = "0.1.7"
8
8
 
9
9
  NODE_SHELF = fn.Shelf(
10
10
  name="Spectral Analysis",
@@ -179,7 +179,7 @@ def compute_peak_properties(
179
179
  return peak_properties
180
180
 
181
181
 
182
- @NodeDecorator(id="span.basics.peaks", name="Peak finder node")
182
+ @NodeDecorator(id="span.basics.peaks", name="Peak finder")
183
183
  @controlled_wrapper(find_peaks, wrapper_attribute="__fnwrapped__")
184
184
  def peak_finder(
185
185
  x_array: np.ndarray,
@@ -310,14 +310,14 @@ class FittingModel(Enum):
310
310
  Moffat = "Moffat"
311
311
  Pearson4 = "Pearson4"
312
312
  Pearson7 = "Pearson7"
313
+ SkewedGaussian = "Skewed Gaussian"
314
+ SkewedVoigt = "Skewed Voigt"
313
315
  StudentsT = "StudentsT"
314
316
  BreitWigner = "Breit-Wigner"
315
317
  LogNormal = "Log-Normal"
316
318
  DampedOscillator = "Damped Oscillator"
317
319
  DampedHarmonicOscillator = "Damped Harmonic Oscillator"
318
320
  ExponentialGaussian = "Exponential Gaussian"
319
- SkewedGaussian = "Skewed Gaussian"
320
- SkewedVoigt = "Skewed Voigt"
321
321
  ThermalDistribution = "Thermal Distribution"
322
322
  Doniach = "Doniach"
323
323
  PowerLaw = "Power Law"
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "funcnodes-span"
3
- version = "0.1.6"
3
+ version = "0.1.7"
4
4
  description = ""
5
5
  authors = ["Kourosh Rezaei <kouroshrezaei90@gmail.com>"]
6
6
  readme = "README.md"
File without changes