ararpy 0.1.14__py3-none-any.whl → 0.1.17__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.
- ararpy/__init__.py +1 -1
- ararpy/calc/age.py +9 -8
- ararpy/calc/basic.py +30 -1
- ararpy/calc/corr.py +35 -22
- ararpy/calc/regression.py +4 -3
- ararpy/files/calc_file.py +24 -15
- ararpy/smp/basic.py +50 -12
- ararpy/smp/corr.py +8 -6
- ararpy/smp/diffusion_funcs.py +73 -99
- ararpy/smp/export.py +216 -86
- ararpy/smp/initial.py +34 -20
- ararpy/smp/plots.py +11 -10
- ararpy/smp/sample.py +14 -9
- ararpy/smp/style.py +13 -5
- ararpy/smp/table.py +19 -21
- ararpy/{argon_diffusion_simulator → thermo}/__init__.py +1 -1
- ararpy/thermo/arrhenius.py +15 -0
- ararpy/{argon_diffusion_simulator/main.py → thermo/atomic_level_random_walk.py} +95 -6
- ararpy/thermo/basic.py +306 -0
- {ararpy-0.1.14.dist-info → ararpy-0.1.17.dist-info}/METADATA +17 -3
- {ararpy-0.1.14.dist-info → ararpy-0.1.17.dist-info}/RECORD +24 -22
- {ararpy-0.1.14.dist-info → ararpy-0.1.17.dist-info}/WHEEL +1 -1
- {ararpy-0.1.14.dist-info → ararpy-0.1.17.dist-info/licenses}/LICENSE +0 -0
- {ararpy-0.1.14.dist-info → ararpy-0.1.17.dist-info}/top_level.txt +0 -0
|
@@ -1,23 +1,37 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ararpy
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.17
|
|
4
4
|
Summary: A project for Ar-Ar geochronology
|
|
5
5
|
Home-page: https://github.com/wuyangchn/ararpy.git
|
|
6
6
|
Author: Yang Wu
|
|
7
7
|
Author-email: wuycug@hotmail.com
|
|
8
|
+
License: MIT
|
|
8
9
|
Classifier: Development Status :: 3 - Alpha
|
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
12
|
Requires-Python: >=3.5
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: chardet
|
|
16
|
+
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: OriginExt
|
|
18
|
+
Requires-Dist: pandas
|
|
19
|
+
Requires-Dist: parse
|
|
20
|
+
Requires-Dist: python_dateutil
|
|
21
|
+
Requires-Dist: scipy
|
|
22
|
+
Requires-Dist: setuptools
|
|
23
|
+
Requires-Dist: xlrd
|
|
24
|
+
Requires-Dist: XlsxWriter
|
|
25
|
+
Requires-Dist: pdf_maker
|
|
15
26
|
Dynamic: author
|
|
16
27
|
Dynamic: author-email
|
|
17
28
|
Dynamic: classifier
|
|
18
29
|
Dynamic: description
|
|
19
30
|
Dynamic: description-content-type
|
|
20
31
|
Dynamic: home-page
|
|
32
|
+
Dynamic: license
|
|
33
|
+
Dynamic: license-file
|
|
34
|
+
Dynamic: requires-dist
|
|
21
35
|
Dynamic: requires-python
|
|
22
36
|
Dynamic: summary
|
|
23
37
|
|
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
ararpy/__init__.py,sha256=
|
|
1
|
+
ararpy/__init__.py,sha256=abmIxFaRq9m7mUI66xHbMGD2wRdzV9v8FAgvlViIlTc,6733
|
|
2
2
|
ararpy/test.py,sha256=4F46-JJ1Ge12HGae0qO44Qc6kiEMHBgn2MsY_5LlHDo,3973
|
|
3
|
-
ararpy/argon_diffusion_simulator/__init__.py,sha256=8VEdUP7sh17lNg6FcRVVK0JynthEsSk_qcTQtwisqU8,229
|
|
4
|
-
ararpy/argon_diffusion_simulator/main.py,sha256=TaULfYZCKkbotIxt0wMuRlSCg0OuG0sy1V4fdzY8VMk,21920
|
|
5
3
|
ararpy/calc/__init__.py,sha256=kUjRuLE8TLuKOv3i976RnGJoEMj23QBZDu37LWs81U4,322
|
|
6
|
-
ararpy/calc/age.py,sha256=
|
|
4
|
+
ararpy/calc/age.py,sha256=POBF_UxfXM_GCfXR_sTE__-fOvYZleNXXSuR_SIrFrI,5782
|
|
7
5
|
ararpy/calc/arr.py,sha256=w31bn6MXF8I8qPXYo5kI-TfMKCYspx1rZ5g_UpwwSd8,14939
|
|
8
|
-
ararpy/calc/basic.py,sha256=
|
|
9
|
-
ararpy/calc/corr.py,sha256=
|
|
6
|
+
ararpy/calc/basic.py,sha256=uJCCUFaPd9zvfkggrdbFYSGLl2pt7UJ7ENgXanzHy68,4036
|
|
7
|
+
ararpy/calc/corr.py,sha256=HnCbf_84gKD6vMX7PflZym-I1MezRKfNHYfEtkDCCaI,18598
|
|
10
8
|
ararpy/calc/err.py,sha256=63LtprqjemlIb1QGDst4Ggcv5KMSDHdlAIL-nyQs1eA,2691
|
|
11
9
|
ararpy/calc/histogram.py,sha256=0GVbDdsjd91KQ1sa2B7NtZ4KGo0XpRIJapgIrzAwQUo,5777
|
|
12
10
|
ararpy/calc/isochron.py,sha256=ej9G2e68k6yszonWHsLcEubh3TA7eh1upTJP_X0ttAA,5726
|
|
13
11
|
ararpy/calc/jvalue.py,sha256=zHUhJ1iYe5mPrY95mGYxoUPAp7hwu4coUgiHKiruKfM,1138
|
|
14
12
|
ararpy/calc/plot.py,sha256=iWxPYIaT0OmJBiho7X9wFY7m-QrvYexu6nWHp24T_VY,1962
|
|
15
13
|
ararpy/calc/raw_funcs.py,sha256=UC01lvA6GyZ5FJv43jgoUULAFoLnZJMxeSa0BeVFCAM,2637
|
|
16
|
-
ararpy/calc/regression.py,sha256=
|
|
14
|
+
ararpy/calc/regression.py,sha256=w5kni6LGqvISvlvbBZnJ3N2c5eQjgkz3bBbj0PXPyGs,40251
|
|
17
15
|
ararpy/calc/spectra.py,sha256=_Q23eP9necHlaCoHf3_UfW1N3JmVZj5rcWFro8GS-CA,1995
|
|
18
16
|
ararpy/examples/022_VU124-M11a.ahd,sha256=3m0Gd-ZObou3KsnRNFMf77QwzT1Uz3nu3vA33Sqeyng,5414
|
|
19
17
|
ararpy/examples/20WHA0103.age,sha256=cT-a4d7Wt77aotx6v0G47vulY_TZIcZUcaVHB3pqTPM,380416
|
|
@@ -37,28 +35,32 @@ ararpy/examples/sample-default.smp,sha256=YNkoQGgPrsL_fXS7ZHxfRtLQWekCDqT9czS6vB
|
|
|
37
35
|
ararpy/files/__init__.py,sha256=l5B5ZQ01WdtvjjN0aMkyAFNgpwANdM_1I0tQbqnRuEY,69
|
|
38
36
|
ararpy/files/arr_file.py,sha256=KqksGlEA6nmMQofTgi7v45flscQZVtefxaNCKrV3Am4,837
|
|
39
37
|
ararpy/files/basic.py,sha256=nc7Hgo_qLSkdmtKzZmd5SQ8Jy0dhW46ly4gh-oisUDs,2095
|
|
40
|
-
ararpy/files/calc_file.py,sha256=
|
|
38
|
+
ararpy/files/calc_file.py,sha256=Mww0R1RH3BpTCo6EetW9jikd19G6-Ljhgak5PXccRfA,28341
|
|
41
39
|
ararpy/files/new_file.py,sha256=efblARIBROVLWS2w3-98BxLX5VZ8grRpiTkJFtf_rAk,214
|
|
42
40
|
ararpy/files/raw_file.py,sha256=aVHlebiGpxHGj_z9mrTR-Y2JEivxa4k1MJZ1TFXyMnA,22319
|
|
43
41
|
ararpy/files/xls.py,sha256=8ibT4ZRY2grK34ikKm1pDmlWFlVTgDL7vSMO6mphzrY,702
|
|
44
42
|
ararpy/smp/EXPORT_TO_PDF_DATA_PROPERTIES.py,sha256=baDM437tu6hsPv0uYfod0TREXlPd6kvMBFT1S9ZZlkk,3024
|
|
45
43
|
ararpy/smp/__init__.py,sha256=k6_fa27UJsQK7K7oC5GYlwMo6l0Xd8af3QtOrZz2XJk,478
|
|
46
|
-
ararpy/smp/basic.py,sha256=
|
|
44
|
+
ararpy/smp/basic.py,sha256=1zsBznVojY-SFAjq_1tkHxvpI9-mD_uotcrd9aDd6n4,22923
|
|
47
45
|
ararpy/smp/calculation.py,sha256=LCFJWjLVLEKEQ5b7RFUIxsMahEzgLdodW4kCYXV5Z34,2919
|
|
48
46
|
ararpy/smp/consts.py,sha256=XIdjdz8cYxspG2jMnoItdlUsxr3hKbNFJjMZJh1bpzw,393
|
|
49
|
-
ararpy/smp/corr.py,sha256=
|
|
50
|
-
ararpy/smp/diffusion_funcs.py,sha256=
|
|
51
|
-
ararpy/smp/export.py,sha256=
|
|
47
|
+
ararpy/smp/corr.py,sha256=1MDH41TsBVyuyI45mqaqP2IvEm_jAUMZgR0MG7uNiu4,25598
|
|
48
|
+
ararpy/smp/diffusion_funcs.py,sha256=4-PMMIZWzjk2HOYYWNgSp4GmApygp1MmOxJ2g3xrqWc,175049
|
|
49
|
+
ararpy/smp/export.py,sha256=_kanGNHjCvjzwUS1xNAPTaTk7VdIn88wOZ9mmq2eLPQ,117324
|
|
52
50
|
ararpy/smp/info.py,sha256=iKUELm-BuUduDlJKC1d8tKKNHbwwbNmhUg2pi6bcBvA,489
|
|
53
|
-
ararpy/smp/initial.py,sha256=
|
|
51
|
+
ararpy/smp/initial.py,sha256=eWvrzTh80AigxDI_BQn6dLkaf-oJeam24LFXcz8zB0o,16011
|
|
54
52
|
ararpy/smp/json.py,sha256=BTZCjVN0aj9epc700nwkYEYMKN2lHBYo-pLmtnz5oHY,2300
|
|
55
|
-
ararpy/smp/plots.py,sha256=
|
|
53
|
+
ararpy/smp/plots.py,sha256=rb_Hsk2M3Dftbsj4bT6JIdSZNjzxyllnMgXhlVChNjU,31802
|
|
56
54
|
ararpy/smp/raw.py,sha256=51n-rrbW2FqeZHQyevuG7iObPLGvIBzTe414QDVM1FE,6523
|
|
57
|
-
ararpy/smp/sample.py,sha256=
|
|
58
|
-
ararpy/smp/style.py,sha256=
|
|
59
|
-
ararpy/smp/table.py,sha256=
|
|
60
|
-
ararpy
|
|
61
|
-
ararpy
|
|
62
|
-
ararpy
|
|
63
|
-
ararpy
|
|
64
|
-
ararpy-0.1.
|
|
55
|
+
ararpy/smp/sample.py,sha256=qrsILB0O2v_8HAq_XsWTyF_rEAGs8GYOVVGz0Cb-Qc0,55641
|
|
56
|
+
ararpy/smp/style.py,sha256=Z4exOAdtvw5xwDf6nyIjPxuvww2U5JK6H_Ql02DBSyM,7030
|
|
57
|
+
ararpy/smp/table.py,sha256=9bNAOqAIOc0nSC3LNeqjJKUYSJSM28Ji3o9VimwMU8A,6645
|
|
58
|
+
ararpy/thermo/__init__.py,sha256=6VBuqTRFl403PVqOuMkVrut0nKaQsAosBmfW91X1dMg,263
|
|
59
|
+
ararpy/thermo/arrhenius.py,sha256=Ass1ichHfqIAtpv8eLlgrUc1UOb3Urh1qzr1E3gLB4U,233
|
|
60
|
+
ararpy/thermo/atomic_level_random_walk.py,sha256=Q97zfe2h2RaxADkoBAqd0uEiP16BFOajrTmXHMkL2EQ,25502
|
|
61
|
+
ararpy/thermo/basic.py,sha256=nBGHI9uK7VdJwThwBIOcKAzdnYqPyQseFoY6s4zKizk,11504
|
|
62
|
+
ararpy-0.1.17.dist-info/licenses/LICENSE,sha256=cvG5t_C1qY_zUyJI7sNOa7gCArdngNPaOrfujl2LYuc,1085
|
|
63
|
+
ararpy-0.1.17.dist-info/METADATA,sha256=AR67ouroFwXwbkw0l8l4r6CaI93JW2R2UfbNY9PhA7o,24812
|
|
64
|
+
ararpy-0.1.17.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
65
|
+
ararpy-0.1.17.dist-info/top_level.txt,sha256=9iTpsPCYuRYq09yQTk9d2lqB8JtTEOmbN-IcGB-K3vY,7
|
|
66
|
+
ararpy-0.1.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|