nxs-analysis-tools 0.1.13__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.
_meta/__init__.py ADDED
@@ -0,0 +1,10 @@
1
+ '''nxs-analysis-tools package metadata.'''
2
+
3
+ # keep consistent with pyproject.toml
4
+ __project__ = 'nxs-analysis-tools'
5
+ __author__ = 'Steven J. Gomez Alvarado'
6
+ __email__ = 'stevenjgomez@ucsb.edu'
7
+ __copyright__ = f"2023-2025, {__author__}"
8
+ __license__ = 'MIT'
9
+ __version__ = '0.1.13'
10
+ __repo_url__ = 'https://github.com/stevenjgomez/nxs_analysis_tools'
@@ -0,0 +1,15 @@
1
+ '''
2
+ Reduce and transform nexus format (.nxs) scattering data.
3
+ '''
4
+
5
+ import numpy as np
6
+ from _meta import __author__, __copyright__, __license__, __version__
7
+ from .datareduction import *
8
+ from .chess import TempDependence
9
+
10
+ # What to import when running "from nxs_analysis_tools import *"
11
+ __all__ = ['load_data', 'load_transform', 'plot_slice', 'Scissors',
12
+ 'reciprocal_lattice_params', 'rotate_data',
13
+ 'convert_to_inverse_angstroms', 'array_to_nxdata', 'Padder',
14
+ 'rebin_nxdata', 'rebin_3d', 'rebin_1d', 'TempDependence',
15
+ 'animate_slice_temp', 'animate_slice_axis']