screamlab 0.1.0__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.
Files changed (39) hide show
  1. screamlab-0.1.0/LICENSE +24 -0
  2. screamlab-0.1.0/MANIFEST.in +11 -0
  3. screamlab-0.1.0/PKG-INFO +90 -0
  4. screamlab-0.1.0/README.rst +33 -0
  5. screamlab-0.1.0/VERSION +1 -0
  6. screamlab-0.1.0/screamlab/__init__.py +1 -0
  7. screamlab-0.1.0/screamlab/__pycache__/__init__.cpython-310.pyc +0 -0
  8. screamlab-0.1.0/screamlab/__pycache__/__init__.cpython-312.pyc +0 -0
  9. screamlab-0.1.0/screamlab/__pycache__/__init__.cpython-313.pyc +0 -0
  10. screamlab-0.1.0/screamlab/__pycache__/__init__.cpython-38.pyc +0 -0
  11. screamlab-0.1.0/screamlab/__pycache__/dataset.cpython-310.pyc +0 -0
  12. screamlab-0.1.0/screamlab/__pycache__/dataset.cpython-312.pyc +0 -0
  13. screamlab-0.1.0/screamlab/__pycache__/dataset.cpython-313.pyc +0 -0
  14. screamlab-0.1.0/screamlab/__pycache__/functions.cpython-310.pyc +0 -0
  15. screamlab-0.1.0/screamlab/__pycache__/functions.cpython-312.pyc +0 -0
  16. screamlab-0.1.0/screamlab/__pycache__/io.cpython-310.pyc +0 -0
  17. screamlab-0.1.0/screamlab/__pycache__/io.cpython-312.pyc +0 -0
  18. screamlab-0.1.0/screamlab/__pycache__/settings.cpython-310.pyc +0 -0
  19. screamlab-0.1.0/screamlab/__pycache__/settings.cpython-312.pyc +0 -0
  20. screamlab-0.1.0/screamlab/__pycache__/settings.cpython-313.pyc +0 -0
  21. screamlab-0.1.0/screamlab/__pycache__/utils.cpython-310.pyc +0 -0
  22. screamlab-0.1.0/screamlab/__pycache__/utils.cpython-312.pyc +0 -0
  23. screamlab-0.1.0/screamlab/dataset.py +655 -0
  24. screamlab-0.1.0/screamlab/functions.py +415 -0
  25. screamlab-0.1.0/screamlab/io.py +984 -0
  26. screamlab-0.1.0/screamlab/settings.py +281 -0
  27. screamlab-0.1.0/screamlab/utils.py +729 -0
  28. screamlab-0.1.0/screamlab.egg-info/PKG-INFO +90 -0
  29. screamlab-0.1.0/screamlab.egg-info/SOURCES.txt +37 -0
  30. screamlab-0.1.0/screamlab.egg-info/dependency_links.txt +1 -0
  31. screamlab-0.1.0/screamlab.egg-info/requires.txt +22 -0
  32. screamlab-0.1.0/screamlab.egg-info/top_level.txt +1 -0
  33. screamlab-0.1.0/setup.cfg +4 -0
  34. screamlab-0.1.0/setup.py +72 -0
  35. screamlab-0.1.0/tests/test_dataset.py +604 -0
  36. screamlab-0.1.0/tests/test_exporter_with_real_data.py +101 -0
  37. screamlab-0.1.0/tests/test_io.py +339 -0
  38. screamlab-0.1.0/tests/test_settings.py +289 -0
  39. screamlab-0.1.0/tests/test_utils.py +894 -0
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2024 Florian Taube
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
18
+ BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
24
+ POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,11 @@
1
+ # Include the README
2
+ include README*
3
+
4
+ # Include the VERSION
5
+ include VERSION
6
+
7
+ # Include the LICENSE
8
+ include LICENSE*
9
+
10
+ # Include package data
11
+ recursive-include screamlab *
@@ -0,0 +1,90 @@
1
+ Metadata-Version: 2.4
2
+ Name: screamlab
3
+ Version: 0.1.0
4
+ Summary: Package for reproducible evaluation of SCREAM-DNP data.
5
+ Home-page: https://github.com/FlorianTaube/screamlab
6
+ Author: Florian Taube
7
+ Author-email: florian.taube@uni-rostock.de
8
+ License: BSD
9
+ Project-URL: Documentation, https://github.com/FlorianTaube/screamlab/docs
10
+ Project-URL: Source, https://github.com/FlorianTaube/screamlab/screamlab
11
+ Keywords: Buildup Time Calculator,NMR,DNP,SCREAM_DNP,TopspinExport
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: License :: OSI Approved :: BSD License
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Intended Audience :: Science/Research
20
+ Classifier: Development Status :: 4 - Beta
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/x-rst
23
+ License-File: LICENSE
24
+ Requires-Dist: matplotlib
25
+ Requires-Dist: numpy
26
+ Requires-Dist: lmfit
27
+ Requires-Dist: scipy
28
+ Requires-Dist: nmrglue
29
+ Requires-Dist: pyDOE3
30
+ Provides-Extra: dev
31
+ Requires-Dist: prospector; extra == "dev"
32
+ Requires-Dist: pyroma; extra == "dev"
33
+ Requires-Dist: bandit; extra == "dev"
34
+ Requires-Dist: black; extra == "dev"
35
+ Requires-Dist: pymetacode; extra == "dev"
36
+ Provides-Extra: docs
37
+ Requires-Dist: sphinx; extra == "docs"
38
+ Requires-Dist: sphinx-rtd-theme; extra == "docs"
39
+ Requires-Dist: sphinx_multiversion; extra == "docs"
40
+ Provides-Extra: deployment
41
+ Requires-Dist: build; extra == "deployment"
42
+ Requires-Dist: twine; extra == "deployment"
43
+ Dynamic: author
44
+ Dynamic: author-email
45
+ Dynamic: classifier
46
+ Dynamic: description
47
+ Dynamic: description-content-type
48
+ Dynamic: home-page
49
+ Dynamic: keywords
50
+ Dynamic: license
51
+ Dynamic: license-file
52
+ Dynamic: project-url
53
+ Dynamic: provides-extra
54
+ Dynamic: requires-dist
55
+ Dynamic: requires-python
56
+ Dynamic: summary
57
+
58
+ =========
59
+ screamlab
60
+ =========
61
+
62
+ Welcome! This is screamlab, a Python package for the evaluation of relaxation processes in multi-spin system observed by SCREAM-DNP (Specific Cross Relaxation Enhancement by Active Motions under Dynamic Nuclear Polarization).
63
+
64
+
65
+ Features
66
+ ========
67
+
68
+ A list of features:
69
+
70
+ * Spectral deconvolution with various possible lineshapes (Gaussian, Lorentzian, Voigtian)
71
+
72
+ * Global fitting of spectra with consistent parameters
73
+
74
+ * Subsequent fitting of peak areas over time with exponential or biexponential behavior, or involving Solomon equations for a more complex fitting.
75
+
76
+
77
+ And to make it even more convenient for users and future-proof:
78
+
79
+ * Open source project written in Python (>= 3.7)
80
+
81
+ * High test coverage
82
+
83
+ * Extensive user and API documentation
84
+
85
+
86
+
87
+ License
88
+ =======
89
+
90
+ This program is free software: you can redistribute it and/or modify it under the terms of the **BSD License**. See the file ``LICENSE`` for more details.
@@ -0,0 +1,33 @@
1
+ =========
2
+ screamlab
3
+ =========
4
+
5
+ Welcome! This is screamlab, a Python package for the evaluation of relaxation processes in multi-spin system observed by SCREAM-DNP (Specific Cross Relaxation Enhancement by Active Motions under Dynamic Nuclear Polarization).
6
+
7
+
8
+ Features
9
+ ========
10
+
11
+ A list of features:
12
+
13
+ * Spectral deconvolution with various possible lineshapes (Gaussian, Lorentzian, Voigtian)
14
+
15
+ * Global fitting of spectra with consistent parameters
16
+
17
+ * Subsequent fitting of peak areas over time with exponential or biexponential behavior, or involving Solomon equations for a more complex fitting.
18
+
19
+
20
+ And to make it even more convenient for users and future-proof:
21
+
22
+ * Open source project written in Python (>= 3.7)
23
+
24
+ * High test coverage
25
+
26
+ * Extensive user and API documentation
27
+
28
+
29
+
30
+ License
31
+ =======
32
+
33
+ This program is free software: you can redistribute it and/or modify it under the terms of the **BSD License**. See the file ``LICENSE`` for more details.
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1 @@
1
+ """Package for reproducible evaluation of SCREAM-DNP data."""