TDCRPy 0.0.18__tar.gz → 0.0.20__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.
Potentially problematic release.
This version of TDCRPy might be problematic. Click here for more details.
- TDCRPy-0.0.20/MANIFEST.in +1 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/PKG-INFO +1 -1
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/TDCRPy.egg-info/PKG-INFO +1 -1
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/TDCRPy.egg-info/SOURCES.txt +2 -2
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/setup.py +1 -1
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/TDCR_model_lib.py +5 -1
- TDCRPy-0.0.18/tdcrpy/decayData/__init__.py +0 -1
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/LICENCE.md +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/README.md +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/TDCRPy.egg-info/dependency_links.txt +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/TDCRPy.egg-info/requires.txt +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/TDCRPy.egg-info/top_level.txt +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/setup.cfg +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/Activity_TDCR.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/EfficiencyProfils.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/TDCRPy.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/TDCRoptimize.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/__init__.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/decay.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/test.py +0 -0
- {TDCRPy-0.0.18 → TDCRPy-0.0.20}/tdcrpy/test1.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
recursive-include tdcrpy/decayData/All-nuclides_BetaShape.zip
|
|
@@ -10,6 +10,7 @@ Bureau International des Poids et Mesures
|
|
|
10
10
|
|
|
11
11
|
### IMPORT Python Module
|
|
12
12
|
import urllib.request as rq
|
|
13
|
+
import importlib.resources
|
|
13
14
|
import numpy as np
|
|
14
15
|
from numpy.core.multiarray import where
|
|
15
16
|
import zipfile as zf
|
|
@@ -264,7 +265,10 @@ def readPenNuc(rad):
|
|
|
264
265
|
# toc() # 0.016 s
|
|
265
266
|
|
|
266
267
|
if absolutePath: file_pennuc = 'G:\Python_modules\Jialin\Code\decayData\\All-nuclides_PenNuc.zip'
|
|
267
|
-
else:
|
|
268
|
+
else:
|
|
269
|
+
# file_pennuc = "decayData//All-nuclides_PenNuc.zip"
|
|
270
|
+
with importlib.resources.path('tdcrpy', 'decayData') as data_path:
|
|
271
|
+
file_pennuc = data_path / "All-nuclides_PenNuc.zip"
|
|
268
272
|
|
|
269
273
|
z_PenNuc = zf.ZipFile(file_pennuc)
|
|
270
274
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
from tdcrpy.decayData import All-nuclides_BetaShape.zip
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|