ararpy 0.1.25__py3-none-any.whl → 0.1.26__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 CHANGED
@@ -16,10 +16,10 @@ from . import calc, smp, files, thermo, test
16
16
  """ Information """
17
17
 
18
18
  name = 'ararpy'
19
- version = '0.1.25'
19
+ version = '0.1.26'
20
20
  __version__ = version
21
21
  full_version = version
22
- last_update = '2024-05-20'
22
+ last_update = '2024-05-22'
23
23
 
24
24
  """ ArArPy Functions """
25
25
 
ararpy/files/raw_file.py CHANGED
@@ -25,7 +25,43 @@ from ..calc.basic import utc_dt
25
25
 
26
26
  """ Open raw data file """
27
27
 
28
- DEFAULT_SAMPLE_INFO = {}
28
+ DEFAULT_SAMPLE_INFO = {
29
+ "ExpName": "en", # "Experiment Name"
30
+ "StepName": "sn", # "Step Name"
31
+ "StepType": "st", # "Step Type"
32
+ "StepLabel": "sl", # "Step Label"
33
+ "ZeroYear": "date", # "Zero Date Year"
34
+ "ZeroHour": "time", # "Zero Time Hour"
35
+ "ZeroMon": "mon", # "Zero Date Month"
36
+ "ZeroMin": "min", # "Zero Time Minute"
37
+ "ZeroDay": "day", # "Zero Date Day"
38
+ "ZeroSec": "sec", # "Zero Time Second"
39
+ "SmpName": "smpn", # "Sample Name"
40
+ "SmpLoc": "smpl", # "Sample location"
41
+ "SmpMatr": "smpm", # "Sample Material"
42
+ "ExpType": "et", # "Experiment Type"
43
+ "SmpWeight": "smpw", # "Sample Weight"
44
+ "Stepunit": "su", # "Step unit"
45
+ "HeatingTime": "ht", # "Heating time"
46
+ "InstrName": "inn", # "Instrument name"
47
+ "Researcher": "re", # "Researcher"
48
+ "Analyst": "an", # "Analyst"
49
+ "Lab": "la", # "Laboratory"
50
+ "Jv": "jv", # "J value"
51
+ "Jsig": "je", # "J value error"
52
+ "MDF": "mdf", # "MDF"
53
+ "MDFSig": "mdfe", # "MDF error"
54
+ "CalcName": "cp", # "Calc params"
55
+ "IrraName": "in", # "Irra name"
56
+ "IrraLabel": "il", # "Irra label"
57
+ "IrraPosH": "ih", # "Irra position H"
58
+ "IrraPosX": "ix", # "Irra position X"
59
+ "IrraPosY": "iy", # "Irra position Y"
60
+ "StdName": "stdn", # "Standard name"
61
+ "StdAge": "stda", # "Standard age"
62
+ "StdAgeSig": "stde", # "Standard age error"
63
+ }
64
+
29
65
 
30
66
 
31
67
  def open_file(file_path: str, input_filter: List[Union[str, int, bool]]):
@@ -217,48 +253,27 @@ def get_raw_data(file_contents: List[List[Union[int, float, str, bool, list]]],
217
253
  idx = step_index = 0
218
254
 
219
255
  header = input_filter[5]
220
- isotopic_data_index = input_filter[8:28]
221
- sample_info_index = input_filter[33:65]
222
- optional_info_index = input_filter[37:-6]
223
- check_box_index = input_filter[-6:]
256
+ isotope_index = input_filter[8:28]
257
+ data_index = input_filter[4:33]
258
+ strings_index = input_filter[33:41] # strings: filename, parsing information, datetime, timezone
259
+ optional_info_index = input_filter[41:-7] # from Exp Name to Std Age Error
260
+ check_box_index = input_filter[-7:]
224
261
 
225
- timezone = sample_info_index[3] if sample_info_index[3] != "" else "utc"
226
262
  while True: # measurment steps sloop
227
263
 
228
- # all text information
264
+ # ============ all text information ============
229
265
  options = get_sample_info(file_contents, optional_info_index, default="", base=[1, 1 - idx, 1])
230
266
 
231
- # Zero datetime
232
- try:
233
- if check_box_index[2]: # input_filter[134]: date in one string
234
- zero_date = datetime_parse(options.get('ZeroYear'), sample_info_index[1])
235
- else:
236
- zero_date = datetime(year=options.get('ZeroYear'), month=options.get('ZeroMon'),
237
- day=options.get('ZeroDay'))
238
-
239
- if check_box_index[3]: # input_filter[135]: time in one string
240
- zero_time = datetime_parse(options.get('ZeroHour'), sample_info_index[2])
241
- else:
242
- zero_time = datetime(year=2020, month=12, day=31, hour=options.get('ZeroHour'),
243
- minute=options.get('ZeroMin'), second=options.get('ZeroSec'))
244
-
245
- zero_datetime = datetime(
246
- zero_date.year, zero_date.month, zero_date.day, zero_time.hour, zero_time.minute, zero_time.second)
247
- # adjust to UTC
248
- zero_datetime = utc_dt(zero_datetime, tz=timezone).isoformat(timespec='seconds')
249
- except (TypeError, ValueError, IndexError):
250
- # print(f"Cannot parse zero datetime")
251
- zero_datetime = datetime(1970, 1, 1, 0, 0, 0).isoformat(timespec='seconds')
252
-
253
- # Step name
267
+ # ============ Step name ============
254
268
  try:
255
269
  step_name = options.get('StepName')
256
270
  experiment_name = options.get('ExpName')
257
- if check_box_index[1] and sample_info_index[0].strip() != "":
258
- _res = string_parser(sample_info_index[0], file_name)
259
- if _res is not None:
260
- experiment_name = _res.named.get("en", experiment_name)
261
- step_index = _res.named.get("sn", step_name)
271
+ if check_box_index[1] and strings_index[0].strip() != "":
272
+ res = string_parser(strings_index[0], file_name)
273
+ if res is not None and "en" in res.named.keys():
274
+ experiment_name = res.named.get("en")
275
+ if res is not None and "sn" in res.named.keys():
276
+ step_index = res.named.get("sn")
262
277
  if step_index.isnumeric():
263
278
  step_name = f"{experiment_name}-{int(step_index):02d}"
264
279
  else:
@@ -273,33 +288,69 @@ def get_raw_data(file_contents: List[List[Union[int, float, str, bool, list]]],
273
288
  options.update({'StepName': step_name})
274
289
  options.update({'ExpName': experiment_name})
275
290
 
291
+ # ============ Step information ============
292
+ try:
293
+ if check_box_index[2]:
294
+ string = get_item(file_contents, strings_index[1:4], default="", base=[1, 1 - idx, 1])
295
+ res = string_parser(strings_index[4], string)
296
+ if res is not None:
297
+ options.update(dict(zip(DEFAULT_SAMPLE_INFO.keys(), [res.named.get(value, options.get(key)) for key, value in DEFAULT_SAMPLE_INFO.items()])))
298
+ except (TypeError, ValueError, IndexError):
299
+ break
300
+ else:
301
+ pass
302
+
303
+ # ============ Zero datetime ============
304
+ timezone = strings_index[7] if strings_index[7] != "" else "utc"
305
+ try:
306
+ if check_box_index[3]: # date in one string
307
+ zero_date = datetime_parse(options.get('ZeroYear'), strings_index[5])
308
+ else:
309
+ zero_date = datetime(year=options.get('ZeroYear'), month=options.get('ZeroMon'),
310
+ day=options.get('ZeroDay'))
311
+
312
+ if check_box_index[4]: # time in one string
313
+ zero_time = datetime_parse(options.get('ZeroHour'), strings_index[6])
314
+ else:
315
+ zero_time = datetime(year=2020, month=12, day=31, hour=options.get('ZeroHour'),
316
+ minute=options.get('ZeroMin'), second=options.get('ZeroSec'))
317
+
318
+ zero_datetime = datetime(
319
+ zero_date.year, zero_date.month, zero_date.day, zero_time.hour, zero_time.minute, zero_time.second)
320
+ # adjust to UTC
321
+ zero_datetime = utc_dt(zero_datetime, tz=timezone).isoformat(timespec='seconds')
322
+ except (TypeError, ValueError, IndexError):
323
+ # print(f"Cannot parse zero datetime")
324
+ zero_datetime = datetime(1970, 1, 1, 0, 0, 0).isoformat(timespec='seconds')
325
+
276
326
  current_step = [[step_name, zero_datetime, options]]
277
327
 
328
+ # ============ isotope data ============
278
329
  break_num = 0
279
330
  cycle_num = 0
280
- f = float(input_filter[31]) # Intensity Scale Factor
281
- data_content = file_contents[input_filter[4] - 1 if input_filter[4] != 0 else 0]
331
+ f = float(data_index[27]) # Intensity Scale Factor
332
+ data_content = file_contents[data_index[0] - 1 if data_index[0] != 0 else 0]
282
333
  for i in range(2000): # measurement cycle sloop
283
- if break_num < input_filter[29]:
334
+ if break_num < data_index[25]:
284
335
  break_num += 1
285
336
  continue
286
337
  break_num = 0
287
- if int(input_filter[6]) == 0: # == 0, vertical
288
- start_row = input_filter[28] * cycle_num + input_filter[29] * cycle_num + header + idx - 1
338
+ if int(data_index[2]) == 0: # == 0, vertical
339
+ start_row = data_index[24] * cycle_num + data_index[25] * cycle_num + header + idx - 1
289
340
  try:
290
341
  current_step.append([
291
342
  str(cycle_num + 1),
292
343
  # in sequence: Ar36, Ar37, Ar38, Ar39, Ar40
293
- float(data_content[start_row + isotopic_data_index[18]][isotopic_data_index[19] - 1]),
294
- float(data_content[start_row + isotopic_data_index[16]][isotopic_data_index[17] - 1]) * f,
295
- float(data_content[start_row + isotopic_data_index[14]][isotopic_data_index[15] - 1]),
296
- float(data_content[start_row + isotopic_data_index[12]][isotopic_data_index[13] - 1]) * f,
297
- float(data_content[start_row + isotopic_data_index[10]][isotopic_data_index[11] - 1]),
298
- float(data_content[start_row + isotopic_data_index[ 8]][isotopic_data_index[ 9] - 1]) * f,
299
- float(data_content[start_row + isotopic_data_index[ 6]][isotopic_data_index[ 7] - 1]),
300
- float(data_content[start_row + isotopic_data_index[ 4]][isotopic_data_index[ 5] - 1]) * f,
301
- float(data_content[start_row + isotopic_data_index[ 2]][isotopic_data_index[ 3] - 1]),
302
- float(data_content[start_row + isotopic_data_index[ 0]][isotopic_data_index[ 1] - 1]) * f,
344
+ float(data_content[start_row + isotope_index[18]][isotope_index[19] - 1]),
345
+ float(data_content[start_row + isotope_index[16]][isotope_index[17] - 1]) * f,
346
+ float(data_content[start_row + isotope_index[14]][isotope_index[15] - 1]),
347
+ float(data_content[start_row + isotope_index[12]][isotope_index[13] - 1]) * f,
348
+ float(data_content[start_row + isotope_index[10]][isotope_index[11] - 1]),
349
+ float(data_content[start_row + isotope_index[ 8]][isotope_index[ 9] - 1]) * f,
350
+ float(data_content[start_row + isotope_index[ 6]][isotope_index[ 7] - 1]),
351
+ float(data_content[start_row + isotope_index[ 4]][isotope_index[ 5] - 1]) * f,
352
+ float(data_content[start_row + isotope_index[ 2]][isotope_index[ 3] - 1]),
353
+ float(data_content[start_row + isotope_index[ 0]][isotope_index[ 1] - 1]) * f,
303
354
  ])
304
355
  except (ValueError, IndexError):
305
356
  print(f"Cannot parse isotope data")
@@ -307,23 +358,23 @@ def get_raw_data(file_contents: List[List[Union[int, float, str, bool, list]]],
307
358
  current_step.append([
308
359
  str(cycle_num + 1), None, None, None, None, None, None, None, None, None, None,
309
360
  ])
310
- elif int(input_filter[6]) == 1: # == 1, horizontal
311
- start_row = input_filter[5] + idx
312
- col_inc = input_filter[28] * cycle_num + input_filter[29] * cycle_num - 1
361
+ elif int(data_index[2]) == 1: # == 1, horizontal
362
+ start_row = data_index[1] + idx
363
+ col_inc = data_index[24] * cycle_num + data_index[25] * cycle_num - 1
313
364
  try:
314
365
  current_step.append([
315
366
  str(cycle_num + 1),
316
367
  # Ar36, Ar37, Ar38, Ar39, Ar40
317
- float(data_content[start_row][isotopic_data_index[19] + col_inc]),
318
- float(data_content[start_row][isotopic_data_index[17] + col_inc]) * f,
319
- float(data_content[start_row][isotopic_data_index[15] + col_inc]),
320
- float(data_content[start_row][isotopic_data_index[13] + col_inc]) * f,
321
- float(data_content[start_row][isotopic_data_index[11] + col_inc]),
322
- float(data_content[start_row][isotopic_data_index[ 9] + col_inc]) * f,
323
- float(data_content[start_row][isotopic_data_index[ 7] + col_inc]),
324
- float(data_content[start_row][isotopic_data_index[ 5] + col_inc]) * f,
325
- float(data_content[start_row][isotopic_data_index[ 3] + col_inc]),
326
- float(data_content[start_row][isotopic_data_index[ 1] + col_inc]) * f,
368
+ float(data_content[start_row][isotope_index[19] + col_inc]),
369
+ float(data_content[start_row][isotope_index[17] + col_inc]) * f,
370
+ float(data_content[start_row][isotope_index[15] + col_inc]),
371
+ float(data_content[start_row][isotope_index[13] + col_inc]) * f,
372
+ float(data_content[start_row][isotope_index[11] + col_inc]),
373
+ float(data_content[start_row][isotope_index[ 9] + col_inc]) * f,
374
+ float(data_content[start_row][isotope_index[ 7] + col_inc]),
375
+ float(data_content[start_row][isotope_index[ 5] + col_inc]) * f,
376
+ float(data_content[start_row][isotope_index[ 3] + col_inc]),
377
+ float(data_content[start_row][isotope_index[ 1] + col_inc]) * f,
327
378
  ])
328
379
  except (ValueError, IndexError):
329
380
  print(f"Cannot parse isotope data")
@@ -332,14 +383,14 @@ def get_raw_data(file_contents: List[List[Union[int, float, str, bool, list]]],
332
383
  str(cycle_num + 1), None, None, None, None, None, None, None, None, None, None,
333
384
  ])
334
385
  else:
335
- raise ValueError(f"{input_filter[6]} not in [0, 1]")
386
+ raise ValueError(f"{data_index[2]} not in [0, 1]")
336
387
 
337
388
  cycle_num += 1
338
- if cycle_num >= input_filter[7]:
389
+ if cycle_num >= data_index[3]:
339
390
  break
340
391
 
341
392
  step_list.append(current_step)
342
- idx = input_filter[32] * len(step_list)
393
+ idx = data_index[28] * len(step_list)
343
394
 
344
395
  if not check_box_index[0] or len(step_list) >= 500: # check_box_index[0]: multiple sequences
345
396
  break
@@ -366,12 +417,12 @@ def get_sample_info(file_contents: list, index_list: list, default="", base: Uni
366
417
  "StepName": get_item(file_contents, index_list[3:6], default=default, base=base),
367
418
  "StepType": get_item(file_contents, index_list[6:9], default=default, base=base),
368
419
  "StepLabel": get_item(file_contents, index_list[9:12], default=default, base=base),
369
- "ZeroYear": get_item(file_contents, index_list[12:15], default=default, base=base), # year
370
- "ZeroHour": get_item(file_contents, index_list[15:18], default=default, base=base), # hour
371
- "ZeroMon": get_item(file_contents, index_list[18:21], default=default, base=base), # month
372
- "ZeroMin": get_item(file_contents, index_list[21:24], default=default, base=base), # minute
373
- "ZeroDay": get_item(file_contents, index_list[24:27], default=default, base=base), # day
374
- "ZeroSec": get_item(file_contents, index_list[27:30], default=default, base=base), # second
420
+ "ZeroYear": get_item(file_contents, index_list[12:15], default=default, base=base),
421
+ "ZeroHour": get_item(file_contents, index_list[15:18], default=default, base=base),
422
+ "ZeroMon": get_item(file_contents, index_list[18:21], default=default, base=base),
423
+ "ZeroMin": get_item(file_contents, index_list[21:24], default=default, base=base),
424
+ "ZeroDay": get_item(file_contents, index_list[24:27], default=default, base=base),
425
+ "ZeroSec": get_item(file_contents, index_list[27:30], default=default, base=base),
375
426
  "SmpName": get_item(file_contents, index_list[30:33], default=default, base=base),
376
427
  "SmpLoc": get_item(file_contents, index_list[33:36], default=default, base=base),
377
428
  "SmpMatr": get_item(file_contents, index_list[36:39], default=default, base=base),
@@ -385,46 +436,16 @@ def get_sample_info(file_contents: list, index_list: list, default="", base: Uni
385
436
  "Lab": get_item(file_contents, index_list[60:63], default=default, base=base),
386
437
  "Jv": get_item(file_contents, index_list[63:66], default=default, base=base),
387
438
  "Jsig": get_item(file_contents, index_list[66:69], default=default, base=base),
388
- "CalcName": get_item(file_contents, index_list[69:72], default=default, base=base),
389
- "IrraName": get_item(file_contents, index_list[72:75], default=default, base=base),
390
- "IrraLabel": get_item(file_contents, index_list[75:78], default=default, base=base),
391
- "IrraPosH": get_item(file_contents, index_list[78:81], default=default, base=base),
392
- "IrraPosX": get_item(file_contents, index_list[81:84], default=default, base=base),
393
- "IrraPosY": get_item(file_contents, index_list[84:87], default=default, base=base),
394
- "StdName": get_item(file_contents, index_list[87:90], default=default, base=base),
395
- "StdAge": get_item(file_contents, index_list[90:93], default=default, base=base),
396
- "StdAgeSig": get_item(file_contents, index_list[93:96], default=default, base=base),
397
- # "Experiment Name": get_item(file_contents, sample_info_index[0:3], default=default, base=base),
398
- # "Step Name": get_item(file_contents, sample_info_index[3:6], default=default, base=base),
399
- # "Step Type": get_item(file_contents, sample_info_index[6:9], default=default, base=base),
400
- # "Step Label": get_item(file_contents, sample_info_index[9:12], default=default, base=base),
401
- # "Zero Date Year": get_item(file_contents, sample_info_index[12:15], default=default, base=base),
402
- # "Zero Time Hour": get_item(file_contents, sample_info_index[15:18], default=default, base=base),
403
- # "Zero Date Month": get_item(file_contents, sample_info_index[18:21], default=default, base=base),
404
- # "Zero Time Minute": get_item(file_contents, sample_info_index[21:24], default=default, base=base),
405
- # "Zero Date Day": get_item(file_contents, sample_info_index[24:27], default=default, base=base),
406
- # "Zero Time Second": get_item(file_contents, sample_info_index[27:30], default=default, base=base),
407
- # "Sample Name": get_item(file_contents, sample_info_index[30:33], default=default, base=base),
408
- # "Sample location": get_item(file_contents, sample_info_index[33:36], default=default, base=base),
409
- # "Sample Material": get_item(file_contents, sample_info_index[36:39], default=default, base=base),
410
- # "Experiment Type": get_item(file_contents, sample_info_index[39:42], default=default, base=base),
411
- # "Sample Weight": get_item(file_contents, sample_info_index[42:45], default=default, base=base),
412
- # "Step unit": get_item(file_contents, sample_info_index[45:48], default=default, base=base),
413
- # "Heating time": get_item(file_contents, sample_info_index[48:51], default=default, base=base),
414
- # "Instrument name": get_item(file_contents, sample_info_index[51:54], default=default, base=base),
415
- # "Researcher": get_item(file_contents, sample_info_index[54:57], default=default, base=base),
416
- # "Analyst": get_item(file_contents, sample_info_index[57:60], default=default, base=base),
417
- # "Laboratory": get_item(file_contents, sample_info_index[60:63], default=default, base=base),
418
- # "J value": get_item(file_contents, sample_info_index[63:66], default=default, base=base),
419
- # "J value error": get_item(file_contents, sample_info_index[66:69], default=default, base=base),
420
- # "Calc params": get_item(file_contents, sample_info_index[69:72], default=default, base=base),
421
- # "Irra name": get_item(file_contents, sample_info_index[72:75], default=default, base=base),
422
- # "Irra label": get_item(file_contents, sample_info_index[75:78], default=default, base=base),
423
- # "Irra position H": get_item(file_contents, sample_info_index[78:81], default=default, base=base),
424
- # "Irra position X": get_item(file_contents, sample_info_index[81:84], default=default, base=base),
425
- # "Irra position Y": get_item(file_contents, sample_info_index[84:87], default=default, base=base),
426
- # "Standard name": get_item(file_contents, sample_info_index[87:90], default=default, base=base),
427
- # "Standard age": get_item(file_contents, sample_info_index[90:93], default=default, base=base),
428
- # "Standard age error": get_item(file_contents, sample_info_index[93:96], default=default, base=base),
439
+ "MDF": get_item(file_contents, index_list[69:72], default=default, base=base),
440
+ "MDFSig": get_item(file_contents, index_list[72:75], default=default, base=base),
441
+ "CalcName": get_item(file_contents, index_list[75:78], default=default, base=base),
442
+ "IrraName": get_item(file_contents, index_list[78:81], default=default, base=base),
443
+ "IrraLabel": get_item(file_contents, index_list[81:84], default=default, base=base),
444
+ "IrraPosH": get_item(file_contents, index_list[84:87], default=default, base=base),
445
+ "IrraPosX": get_item(file_contents, index_list[87:90], default=default, base=base),
446
+ "IrraPosY": get_item(file_contents, index_list[90:93], default=default, base=base),
447
+ "StdName": get_item(file_contents, index_list[93:96], default=default, base=base),
448
+ "StdAge": get_item(file_contents, index_list[96:99], default=default, base=base),
449
+ "StdAgeSig": get_item(file_contents, index_list[99:102], default=default, base=base),
429
450
  })
430
451
  return sample_info
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ararpy
3
- Version: 0.1.25
3
+ Version: 0.1.26
4
4
  Summary: A project for Ar-Ar geochronology
5
5
  Home-page: https://github.com/wuyangchn/ararpy.git
6
6
  Author: Yang Wu
@@ -1,4 +1,4 @@
1
- ararpy/__init__.py,sha256=IaTaNQCT51JP-Xn9mL40aPYSjWqEPbZAtHp0nkoS52c,6857
1
+ ararpy/__init__.py,sha256=vsCWb5yzto-kGLLNpOzAb74KvfITyybMQ5RgEJJkmlU,6857
2
2
  ararpy/test.py,sha256=4F46-JJ1Ge12HGae0qO44Qc6kiEMHBgn2MsY_5LlHDo,3973
3
3
  ararpy/calc/__init__.py,sha256=kUjRuLE8TLuKOv3i976RnGJoEMj23QBZDu37LWs81U4,322
4
4
  ararpy/calc/age.py,sha256=WOZs70zXiBWDIEhXJLIaNiYTOFJNk0NDbH5e5zCbCks,5435
@@ -37,7 +37,7 @@ ararpy/files/arr_file.py,sha256=KqksGlEA6nmMQofTgi7v45flscQZVtefxaNCKrV3Am4,837
37
37
  ararpy/files/basic.py,sha256=nc7Hgo_qLSkdmtKzZmd5SQ8Jy0dhW46ly4gh-oisUDs,2095
38
38
  ararpy/files/calc_file.py,sha256=nqv_VfbOzz8ejcnjNoHJafGiYldhYSOLusUGtuZ8jR0,28207
39
39
  ararpy/files/new_file.py,sha256=efblARIBROVLWS2w3-98BxLX5VZ8grRpiTkJFtf_rAk,214
40
- ararpy/files/raw_file.py,sha256=FScTqZzMPinNSCew86ETyDEcTjhbV-FQ3o4mWrbiBbU,21564
40
+ ararpy/files/raw_file.py,sha256=AM_B3pnB6sVk-dAZ0afCqvNf2jDCFtKjYXzuJ4nUBWw,20501
41
41
  ararpy/files/xls.py,sha256=DVcZ_yRnc19p-m4leGGjt-YPDpSa2udYKmGyrM0qub0,640
42
42
  ararpy/smp/EXPORT_TO_PDF_DATA_PROPERTIES.py,sha256=baDM437tu6hsPv0uYfod0TREXlPd6kvMBFT1S9ZZlkk,3024
43
43
  ararpy/smp/__init__.py,sha256=k6_fa27UJsQK7K7oC5GYlwMo6l0Xd8af3QtOrZz2XJk,478
@@ -59,8 +59,8 @@ ararpy/thermo/__init__.py,sha256=6VBuqTRFl403PVqOuMkVrut0nKaQsAosBmfW91X1dMg,263
59
59
  ararpy/thermo/arrhenius.py,sha256=Ass1ichHfqIAtpv8eLlgrUc1UOb3Urh1qzr1E3gLB4U,233
60
60
  ararpy/thermo/atomic_level_random_walk.py,sha256=Q97zfe2h2RaxADkoBAqd0uEiP16BFOajrTmXHMkL2EQ,25502
61
61
  ararpy/thermo/basic.py,sha256=nBGHI9uK7VdJwThwBIOcKAzdnYqPyQseFoY6s4zKizk,11504
62
- ararpy-0.1.25.dist-info/licenses/LICENSE,sha256=cvG5t_C1qY_zUyJI7sNOa7gCArdngNPaOrfujl2LYuc,1085
63
- ararpy-0.1.25.dist-info/METADATA,sha256=_jTZMLzib2249ffidHh8OG0E3stzFUz9LXDlIRkQNzk,24516
64
- ararpy-0.1.25.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
65
- ararpy-0.1.25.dist-info/top_level.txt,sha256=9iTpsPCYuRYq09yQTk9d2lqB8JtTEOmbN-IcGB-K3vY,7
66
- ararpy-0.1.25.dist-info/RECORD,,
62
+ ararpy-0.1.26.dist-info/licenses/LICENSE,sha256=cvG5t_C1qY_zUyJI7sNOa7gCArdngNPaOrfujl2LYuc,1085
63
+ ararpy-0.1.26.dist-info/METADATA,sha256=MawVxka6lcSIYT_yVVgh9ajFKL1N7SZnxv8ifUNm0jM,24516
64
+ ararpy-0.1.26.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
65
+ ararpy-0.1.26.dist-info/top_level.txt,sha256=9iTpsPCYuRYq09yQTk9d2lqB8JtTEOmbN-IcGB-K3vY,7
66
+ ararpy-0.1.26.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5