TDCRPy 2.0.5__py3-none-any.whl → 2.0.7__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.

Potentially problematic release.


This version of TDCRPy might be problematic. Click here for more details.

@@ -1081,8 +1081,8 @@ tdcrpy/docs/_build/html/source/modules.html,sha256=Jf-qxVBId0UgpwyvYuyjtMNG-ezPO
1081
1081
  tdcrpy/docs/_build/html/source/tdcrpy.html,sha256=-38lHMNFB22p1tWJEeN3yDqfDiCYE304vxDamO1-iRc,3779
1082
1082
  tdcrpy/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1083
1083
  tdcrpy/test/test_tdcrpy.py,sha256=JINqSEMFoNpptE4f3h6ZzTYW1rBx90KkaoQzltSg-No,4692
1084
- TDCRPy-2.0.5.dist-info/LICENCE.md,sha256=ZTpWyGU3qv_iwEpgvCijoCuCYpOPpyzJCgOk46WpUKU,1066
1085
- TDCRPy-2.0.5.dist-info/METADATA,sha256=mqrbgVTMHYmh9bx5x0SvHIbIQJbnqqAkW73WyWxVFUA,2233
1086
- TDCRPy-2.0.5.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
1087
- TDCRPy-2.0.5.dist-info/top_level.txt,sha256=f4vzFFcKSEnonAACs0ZXuRczmroLLqtPTqXFymU_VU0,14
1088
- TDCRPy-2.0.5.dist-info/RECORD,,
1084
+ TDCRPy-2.0.7.dist-info/LICENCE.md,sha256=ZTpWyGU3qv_iwEpgvCijoCuCYpOPpyzJCgOk46WpUKU,1066
1085
+ TDCRPy-2.0.7.dist-info/METADATA,sha256=tQ_JoZisK1kCi-WHGcUKzOI8hymMXvGtJfz__0r2jUY,45040
1086
+ TDCRPy-2.0.7.dist-info/WHEEL,sha256=ixB2d4u7mugx_bCBycvM9OzZ5yD7NmPXFRtKlORZS2Y,91
1087
+ TDCRPy-2.0.7.dist-info/top_level.txt,sha256=f4vzFFcKSEnonAACs0ZXuRczmroLLqtPTqXFymU_VU0,14
1088
+ TDCRPy-2.0.7.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.0.0)
2
+ Generator: setuptools (74.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,84 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: TDCRPy
3
- Version: 2.0.5
4
- Summary: TDCR model
5
- Home-page: https://pypi.org/project/TDCRPy/
6
- Author: RomainCoulon (Romain Coulon)
7
- Author-email: <romain.coulon@bipm.org>
8
- Project-URL: Documentation, https://github.com/RomainCoulon/TDCRPy/
9
- Keywords: Python,TDCR,Monte-Carlo,radionuclide,scintillation,counting
10
- Classifier: Development Status :: 4 - Beta
11
- Classifier: Intended Audience :: Science/Research
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Natural Language :: English
14
- Classifier: Natural Language :: French
15
- Classifier: Programming Language :: Python :: 3
16
- Classifier: Operating System :: Unix
17
- Classifier: Operating System :: MacOS :: MacOS X
18
- Classifier: Operating System :: Microsoft :: Windows
19
- Classifier: Topic :: Scientific/Engineering :: Physics
20
- Requires-Python: >=3.11
21
- Description-Content-Type: text/markdown
22
- License-File: LICENCE.md
23
- Requires-Dist: numpy
24
- Requires-Dist: tqdm
25
- Requires-Dist: setuptools
26
- Requires-Dist: scipy
27
- Requires-Dist: configparser
28
- Requires-Dist: importlib.resources
29
- Requires-Dist: matplotlib
30
-
31
- # TDCRPy
32
-
33
- `TDCRPy` is a Python code to calculate detection efficiency of a liquid scintillation counter using 3-photomultiplier tubes.
34
- The calculation is based on the photo-physical model called of the Triple-to-Double-Coincidence-Ratio method (TDCR) and a Monte-Carlo sampling allowing to adress complexe decay schemes and radionuclide mixtures.
35
-
36
- The code is developped and maintained by the BIPM (MIT license).
37
-
38
- ## Installation
39
-
40
- `TDCRPy` requires that the following packages are installed in your `Python` environement.
41
-
42
- ```shell
43
- pip install importlib.resources configparser numpy tqdm setuptools scipy
44
- ```
45
- or in `conda` environement:
46
-
47
- ```shell
48
- conda install importlib.resources configparser numpy tqdm setuptools scipy
49
- ```
50
-
51
- Then, `TDCRPy` can be installed.
52
-
53
- ```shell
54
- pip install TDCRPy
55
- ```
56
-
57
- To obtain the last version.
58
-
59
- ```shell
60
- pip install TDCRPy --upgrade
61
- ```
62
-
63
- The module can be imported in your Python code such as.
64
-
65
- ```python
66
- import tdcrpy
67
- ```
68
-
69
- ## Test
70
-
71
- To run the unit tests of the package:
72
-
73
- ```shell
74
- python -m unittest tdcrpy.test.test_tdcrpy
75
- ```
76
-
77
- or (using the coverage package)
78
-
79
- ```shell
80
- coverage run -m unittest tdcrpy.test.test_tdcrpy
81
- coverage report -m
82
- ```
83
-
84
-