nbragg 0.3.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.
nbragg/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """
2
+ nbragg: Simple yet powerful package for neutron resonance fitting
3
+ """
4
+
5
+ from __future__ import annotations
6
+ from importlib.metadata import version
7
+
8
+ __all__ = ("__version__",)
9
+ __version__ = version(__name__)
10
+
11
+ from nbragg.cross_section import CrossSection
12
+ from nbragg.response import Response, Background
13
+ from nbragg.models import TransmissionModel
14
+ from nbragg.data import Data
15
+ import nbragg.utils as utils
16
+ from nbragg.utils import materials, register_material
17
+
18
+