digichem-core 6.10.1__py3-none-any.whl → 6.10.3__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.
@@ -8,8 +8,10 @@ from digichem.image.orbitals import Orbital_diagram_maker
8
8
  from digichem.image.spectroscopy import Absorption_graph_maker, Emission_graph_maker, \
9
9
  Frequency_graph_maker, NMR_graph_maker, NMR_graph_zoom_maker
10
10
  from digichem.image.structure import Skeletal_image_maker
11
- from digichem.image.vmd import Structure_image_maker, Orbital_image_maker, Density_image_maker, \
12
- Combined_orbital_image_maker, Permanent_dipole_image_maker, Transition_dipole_image_maker
11
+ import digichem.image.vmd
12
+ import digichem.image.render
13
+
14
+
13
15
  from digichem.parse.util import open_for_parsing, parse_calculation
14
16
 
15
17
  from digichem.test.util import digichem_options, data_directory
@@ -17,7 +19,9 @@ from digichem.test.test_result import gaussian_ES_result, turbomole_ES_result, o
17
19
  gaussian_opt_result, turbomole_opt_result, orca_opt_result, orca_opt_freq_result, \
18
20
  orca_nmr_result
19
21
 
20
- HAS_VMD = shutil.which("vmd")
22
+ HAS_VMD = shutil.which(digichem.config.get_config()['render']['vmd']['executable'])
23
+ HAS_BLENDER = shutil.which(digichem.config.get_config()['render']['batoms']['blender'])
24
+
21
25
 
22
26
  @pytest.mark.parametrize("result_set", [
23
27
  pytest.lazy_fixture("gaussian_ES_result"),
@@ -176,14 +180,14 @@ def test_2d_diagram(result_set, tmp_path, digichem_options):
176
180
  assert Path(tmp_path, "tmp.png").exists()
177
181
 
178
182
 
179
- @pytest.mark.skipif(not HAS_VMD,
180
- reason="No VMD available")
181
183
  @pytest.mark.parametrize("cube_file", [
182
184
  Path(data_directory(), "Cubes/Pyridine.HOMO.cube")
183
185
  ], ids = ["Gaussian"])
184
186
  @pytest.mark.parametrize("maker_cls", [
185
- Structure_image_maker,
186
- Orbital_image_maker,
187
+ pytest.param(digichem.image.vmd.Structure_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
188
+ pytest.param(digichem.image.vmd.Orbital_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
189
+ pytest.param(digichem.image.render.Structure_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
190
+ pytest.param(digichem.image.render.Orbital_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
187
191
  ])
188
192
  def test_3d_image(cube_file, maker_cls, tmp_path, digichem_options):
189
193
  """Can we make a 3D structure image?"""
@@ -197,21 +201,17 @@ def test_3d_image(cube_file, maker_cls, tmp_path, digichem_options):
197
201
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
198
202
 
199
203
 
200
- # @pytest.mark.parametrize("result_path", [
201
- # Path(data_directory(), "Pyridine/Gaussian 16 Optimisation Frequencies PBE1PBE (GD3BJ) Toluene 6-31G(d,p).tar.gz")
202
- # ], ids = ["Gaussian"])
203
- # @pytest.mark.parametrize("density", [
204
- # "SCF"
205
- # ])
206
-
207
- @pytest.mark.skipif(not HAS_VMD,
208
- reason="No VMD available")
209
204
  @pytest.mark.parametrize("cube_file", [
210
205
  Path(data_directory(), "Cubes/Pyridine.SCF.cube")
211
206
  ], ids = ["Gaussian"])
212
- def test_density_image(cube_file, tmp_path, digichem_options):
207
+ @pytest.mark.parametrize("maker_cls", [
208
+ pytest.param(digichem.image.vmd.Density_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
209
+ pytest.param(digichem.image.render.Density_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
210
+ ], ids = ["vmd", "batoms"])
211
+ def test_density_image(cube_file, maker_cls, tmp_path, digichem_options):
213
212
  """Can we make a 3D structure image?"""
214
- maker = Density_image_maker.from_options(
213
+
214
+ maker = maker_cls.from_options(
215
215
  tmp_path / "tmp.png",
216
216
  cube_file = cube_file,
217
217
  options = digichem_options
@@ -221,14 +221,16 @@ def test_density_image(cube_file, tmp_path, digichem_options):
221
221
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
222
222
 
223
223
 
224
- @pytest.mark.skipif(not HAS_VMD,
225
- reason="No VMD available")
226
224
  @pytest.mark.parametrize("cube_file", [
227
225
  Path(data_directory(), "Cubes/Benzene.anion.spin.cube")
228
226
  ], ids = ["Gaussian"])
229
- def test_spin_density_image(cube_file, tmp_path, digichem_options):
227
+ @pytest.mark.parametrize("maker_cls", [
228
+ pytest.param(digichem.image.vmd.Spin_density_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
229
+ pytest.param(digichem.image.render.Spin_density_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
230
+ ], ids = ["vmd", "batoms"])
231
+ def test_spin_density_image(cube_file, maker_cls, tmp_path, digichem_options):
230
232
  """Can we make a 3D structure image?"""
231
- maker = Density_image_maker.from_options(
233
+ maker = maker_cls.from_options(
232
234
  tmp_path / "tmp.png",
233
235
  cube_file = cube_file,
234
236
  options = digichem_options
@@ -238,14 +240,16 @@ def test_spin_density_image(cube_file, tmp_path, digichem_options):
238
240
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
239
241
 
240
242
 
241
- @pytest.mark.skipif(not HAS_VMD,
242
- reason="No VMD available")
243
243
  @pytest.mark.parametrize("homo_cube, lumo_cube", [
244
244
  [Path(data_directory(), "Cubes/Pyridine.HOMO.cube"), Path(data_directory(), "Cubes/Pyridine.LUMO.cube")]
245
245
  ], ids = ["Gaussian"])
246
- def test_combined_orbital_image(homo_cube, lumo_cube, tmp_path, digichem_options):
246
+ @pytest.mark.parametrize("maker_cls", [
247
+ pytest.param(digichem.image.vmd.Combined_orbital_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
248
+ pytest.param(digichem.image.render.Combined_orbital_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
249
+ ], ids = ["vmd", "batoms"])
250
+ def test_combined_orbital_image(homo_cube, maker_cls, lumo_cube, tmp_path, digichem_options):
247
251
  """Can we make a 3D structure image?"""
248
- maker = Combined_orbital_image_maker.from_options(
252
+ maker = maker_cls.from_options(
249
253
  tmp_path / "tmp.png",
250
254
  HOMO_cube_file = homo_cube,
251
255
  LUMO_cube_file = lumo_cube,
@@ -256,14 +260,16 @@ def test_combined_orbital_image(homo_cube, lumo_cube, tmp_path, digichem_options
256
260
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
257
261
 
258
262
 
259
- @pytest.mark.skipif(not HAS_VMD,
260
- reason="No VMD available")
261
263
  @pytest.mark.parametrize("cube_file", [
262
264
  Path(data_directory(), "Cubes/Benzene.anion.AHOMO.cube")
263
265
  ], ids = ["Gaussian"])
264
- def test_unrestricted_orbital_image(cube_file, tmp_path, digichem_options):
266
+ @pytest.mark.parametrize("maker_cls", [
267
+ pytest.param(digichem.image.vmd.Alpha_orbital_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
268
+ pytest.param(digichem.image.render.Alpha_orbital_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
269
+ ], ids = ["vmd", "batoms"])
270
+ def test_unrestricted_orbital_image(cube_file, maker_cls, tmp_path, digichem_options):
265
271
  """Can we make a 3D structure image?"""
266
- maker = Orbital_image_maker.from_options(
272
+ maker = maker_cls.from_options(
267
273
  tmp_path / "tmp.png",
268
274
  cube_file = cube_file,
269
275
  options = digichem_options
@@ -273,19 +279,21 @@ def test_unrestricted_orbital_image(cube_file, tmp_path, digichem_options):
273
279
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
274
280
 
275
281
 
276
- @pytest.mark.skipif(not HAS_VMD,
277
- reason="No VMD available")
278
282
  @pytest.mark.parametrize("result_path, cube_file", [
279
283
  [
280
284
  Path(data_directory(), "Pyridine/Gaussian 16 Optimisation Frequencies PBE1PBE (GD3BJ) Toluene 6-31G(d,p).tar.gz"),
281
285
  Path(data_directory(), "Cubes/Pyridine.HOMO.cube"),
282
286
  ]
283
287
  ])
284
- def test_pdm_image(result_path, cube_file, tmp_path, digichem_options):
288
+ @pytest.mark.parametrize("maker_cls", [
289
+ pytest.param(digichem.image.vmd.Permanent_dipole_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
290
+ pytest.param(digichem.image.render.Permanent_dipole_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
291
+ ], ids = ["vmd", "batoms"])
292
+ def test_pdm_image(result_path, cube_file, maker_cls, tmp_path, digichem_options):
285
293
  """Can we make a 3D structure image?"""
286
294
  with open_for_parsing(result_path) as open_files:
287
295
  result_set = parse_calculation(*open_files, options = digichem_options)
288
- maker = Permanent_dipole_image_maker.from_options(
296
+ maker = maker_cls.from_options(
289
297
  tmp_path / "tmp.png",
290
298
  cube_file = cube_file,
291
299
  dipole_moment = result_set.dipole_moment,
@@ -296,19 +304,21 @@ def test_pdm_image(result_path, cube_file, tmp_path, digichem_options):
296
304
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
297
305
 
298
306
 
299
- @pytest.mark.skipif(not HAS_VMD,
300
- reason="No VMD available")
301
307
  @pytest.mark.parametrize("result_path, cube_file", [
302
308
  [
303
309
  Path(data_directory(), "Pyridine/Gaussian 16 Excited States TDA Optimised S(1) PBE1PBE (GD3BJ) Toluene 6-31G(d,p).tar.gz"),
304
310
  Path(data_directory(), "Cubes/Pyridine.HOMO.cube"),
305
311
  ]
306
312
  ])
307
- def test_tdm_image(result_path, cube_file, tmp_path, digichem_options):
313
+ @pytest.mark.parametrize("maker_cls", [
314
+ pytest.param(digichem.image.vmd.Transition_dipole_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
315
+ pytest.param(digichem.image.render.Transition_dipole_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
316
+ ], ids = ["vmd", "batoms"])
317
+ def test_tdm_image(result_path, cube_file, maker_cls, tmp_path, digichem_options):
308
318
  """Can we make a 3D structure image?"""
309
319
  with open_for_parsing(result_path) as open_files:
310
320
  result_set = parse_calculation(*open_files, options = digichem_options)
311
- maker = Transition_dipole_image_maker.from_options(
321
+ maker = maker_cls.from_options(
312
322
  tmp_path / "tmp.png",
313
323
  cube_file = cube_file,
314
324
  dipole_moment = result_set.excited_states.find("S(1)").transition_dipole_moment.electric,
@@ -320,14 +330,16 @@ def test_tdm_image(result_path, cube_file, tmp_path, digichem_options):
320
330
  assert Path(tmp_path, "tmp.x0y0z0.png").exists()
321
331
 
322
332
 
323
- @pytest.mark.skipif(not HAS_VMD,
324
- reason="No VMD available")
325
333
  @pytest.mark.parametrize("cube_file", [
326
334
  Path(data_directory(), "Cubes/Pyridine.HOMO.cube"),
327
335
  ])
328
- def test_nto_image(cube_file, tmp_path, digichem_options):
336
+ @pytest.mark.parametrize("maker_cls", [
337
+ pytest.param(digichem.image.vmd.Orbital_image_maker, marks = pytest.mark.skipif(not HAS_VMD, reason = "VMD is not available")),
338
+ pytest.param(digichem.image.render.Orbital_image_maker, marks = pytest.mark.skipif(not HAS_BLENDER, reason = "Blender is not available")),
339
+ ], ids = ["vmd", "batoms"])
340
+ def test_nto_image(cube_file, maker_cls, tmp_path, digichem_options):
329
341
  """Can we make a 3D structure image?"""
330
- maker = Orbital_image_maker.from_options(
342
+ maker = maker_cls.from_options(
331
343
  tmp_path / "tmp.png",
332
344
  cube_file = cube_file,
333
345
  options = digichem_options
digichem/test/util.py CHANGED
@@ -65,6 +65,8 @@ def digichem_options(tmpdir_factory):
65
65
  ),
66
66
  ]
67
67
  config.logging['render_logging'] = True
68
+ # Set blender quality as low as feasible to shorten test time.
69
+ config.render['batoms']['render_samples'] = 1
68
70
  config.validate()
69
71
  return config
70
72
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: digichem-core
3
- Version: 6.10.1
3
+ Version: 6.10.3
4
4
  Summary: Open-source library for Digichem core components
5
5
  Project-URL: Homepage, https://github.com/Digichem-Project/digichem-core
6
6
  Project-URL: Documentation, https://doc.digi-chem.co.uk
@@ -1,4 +1,4 @@
1
- digichem/__init__.py,sha256=zVk9sd1_7i7oSr7Dg9Gw-ODrlnXXHYuzyGWjGDvB6Zw,2288
1
+ digichem/__init__.py,sha256=luFQpfEPAH0YvnW2PNBB7mdfr8BOYNsDXzN8gSn5Yg4,2288
2
2
  digichem/basis.py,sha256=khzIS9A_w8QH2vsXctWr16Bw5TA84_9_Fo-vuveP_5w,4875
3
3
  digichem/datas.py,sha256=t2PuQFvPb55WO_qVF3Xz67XNodQDimqYD26VkRPEWLA,433
4
4
  digichem/log.py,sha256=tjl8Er16HUsAibBZGZMu8KyT0w53YM3u0Neh_l2jD9Q,6166
@@ -6,7 +6,7 @@ digichem/memory.py,sha256=_HJMwiElr0534lr3h17WwvXOi-DxCN-bAD1Ij8Lwg6U,5638
6
6
  digichem/translate.py,sha256=YKm7wko13A17zQJW8qOT52rzp9wDmR0GDzOepuzr75I,21326
7
7
  digichem/config/README,sha256=0y5sxYPAmpD3XNzgJrr-U8xmiQbheC8bz8lvnNmsNtc,180
8
8
  digichem/config/__init__.py,sha256=wXnmk1fuNZeHOKz06wBfTUkM8-XuW08F2H8QiHyS8Xs,227
9
- digichem/config/base.py,sha256=Wlve8CSKNYB1STVPAkfHREDRUd0Xog8HmzYX1q6dMC8,25005
9
+ digichem/config/base.py,sha256=6K0iQYhxwQEcMdZX_lqxTJ1rrrGLRHU-uugj5D878Jw,25005
10
10
  digichem/config/locations.py,sha256=Jlvql0KJrJEIO_2U6BRS5bjHelKjGGIETR9hOuNe0K0,584
11
11
  digichem/config/parse.py,sha256=amJx89JXkkEyMMSYr5GvLFnLZO3hWahuZtNlx0F0PhA,2667
12
12
  digichem/config/util.py,sha256=i5NgxLPcLx1RM4bArog77hsHxkQmwlqyzJbDtrozBG0,4613
@@ -44,7 +44,7 @@ digichem/image/base.py,sha256=6LGIYK2zB7lQxFhV5t2ZJPcpNMOqRv-JzrBJEeTF9Wg,5193
44
44
  digichem/image/excited_states.py,sha256=1YUa8KYXTvh_Vwl2DSaRwpIh15FtW18KpjLlnD8VTOk,14103
45
45
  digichem/image/graph.py,sha256=3wcembS3gcI5Ejq1lv4Sw1g_7s-fubDpiho_85kzkks,10880
46
46
  digichem/image/orbitals.py,sha256=UcPnOm3tQOdTegsVm_a7AizVe7OpBCz_4sve6u7jAvA,9705
47
- digichem/image/render.py,sha256=jeZDZoaOtvFfTjeEJA_prrXZqCFr72V6H4DD5kUBrUU,30409
47
+ digichem/image/render.py,sha256=fQu9QcuIolzoeMoaQPQo27Z-JEXUCQCWiSVWQgv2iG4,30470
48
48
  digichem/image/spectroscopy.py,sha256=wwguBYBwL8VNTJK5rBZbUiwaFHFLIaqBWYR3qbwDpAs,33567
49
49
  digichem/image/structure.py,sha256=gxgX5cXA3BaqBh5K7UPcVGWX-yG5kc6Robf5sWT1IYM,4900
50
50
  digichem/image/vmd.py,sha256=GGE35qypgBbpadHo1M929czuxM0U4NRICPkltKWEojE,39305
@@ -55,17 +55,17 @@ digichem/input/gaussian.py,sha256=ZwfCA0jgHcY8JVcyyKmnchU-OyQ26-8ynQJdeYtNT7A,56
55
55
  digichem/misc/__init__.py,sha256=gRlflbkXYyKvqeQ2KTnNAdJ00S6Vhmk-tzSVCBSiWgk,162
56
56
  digichem/misc/argparse.py,sha256=AG33L7MCi-ftb4XnvndQb4hKcorzJxESAVB0HIZRlcw,1371
57
57
  digichem/misc/base.py,sha256=ZaeeLJrRZnF66bhkGdPvhsVGgxzcV_pneESQ1ReDedc,1884
58
- digichem/misc/io.py,sha256=9ZX4GminIBQnl6ZlOyrBe5U2o0NdmGzlfYtN3k7X0mw,10732
58
+ digichem/misc/io.py,sha256=7Oqi7UQLwhCsVHdEN0n7Vubsbzk14fLSkAYXe4obPbQ,11007
59
59
  digichem/misc/layered_dict.py,sha256=Psf30UmHVHAE95RnFYiR2f7oaW05CsUhT4FtXhUtQcw,15561
60
60
  digichem/misc/text.py,sha256=FVcxf8ctt3D2yGFYgrZk3dpO48f_0aDhHiry_xGirD8,3673
61
61
  digichem/misc/time.py,sha256=Z7FWpkb8gqBHVMXdhFiBWn2VwmXuU9uaMxEKsfAH5Kw,2214
62
62
  digichem/parse/__init__.py,sha256=SIAj7do6mXRNuOEkN691Nh-je2YlZ3qL6fxnjsTE6QY,867
63
63
  digichem/parse/base.py,sha256=RZOuGCmXk3CyVdK6-lev-DyYWe215JYRVA-SiiXS72E,8757
64
- digichem/parse/cclib.py,sha256=QngzWGlOtfxa4JoqhSAUdK91AJUR5v-BqxDflCBFVwA,8370
64
+ digichem/parse/cclib.py,sha256=4j1RCMvEb31Lh9DncYgCbcs-u9gFq_z7RkfYLv9EW4w,9897
65
65
  digichem/parse/dump.py,sha256=wd1hW7xjjXNPmmf2t3DgtU8FkcTAqYkKbJYVt2NjPIQ,9567
66
66
  digichem/parse/gaussian.py,sha256=8Vs07MnlboZiJDJ41dtfRwE2UBHOiVixY3-mQrcoioc,5251
67
67
  digichem/parse/orca.py,sha256=QahMQh-rZphDzyM8Kn6xEbEB9imCWpKUhUmlOxpDio0,4680
68
- digichem/parse/pyscf.py,sha256=LsxqdDIC9KvPmbXHuKAB7t0Lg80qtWPVnfnNoc3INh0,760
68
+ digichem/parse/pyscf.py,sha256=Io13LOxnkSZ1lKFu1tSFzkDZKmFRqDyOVMBesiQIb7o,1197
69
69
  digichem/parse/turbomole.py,sha256=WJIjayh0LnuYlJUjDrCkzGcGW1IGUbRgWuKfcVN5LeQ,9249
70
70
  digichem/parse/util.py,sha256=z_BS6z0KcecKfv6SBuYKpoCBuVwtsK5EkqGbfJn9fxk,28935
71
71
  digichem/result/__init__.py,sha256=FUNL2pc2bP3XNVFRrlyrTppVWEsPRHcThLiVytpsH84,222
@@ -77,7 +77,7 @@ digichem/result/emission.py,sha256=0OPXNR1ZX9ALpjD0Ie5OkrOHNDDz6FsK3pK_0GyqqLI,1
77
77
  digichem/result/energy.py,sha256=53Dm2kHA-x8KtDY3Wq52cPbpE5E01W1lQTNaLe0goZE,10851
78
78
  digichem/result/excited_state.py,sha256=N41Dm6r4C_C08jmcqiXZZdRoHGE2u9CfjTLNzLo8TAQ,34254
79
79
  digichem/result/ground_state.py,sha256=JMRBQ-MC2Ak8Ur-TXGzNkJtSVykkhswHPTOnttZFujE,3790
80
- digichem/result/metadata.py,sha256=sG1iRRnSsVsCc4eKEqDqiU3gr8QulnU531YN-1dWs6g,37167
80
+ digichem/result/metadata.py,sha256=iHyJ0HGtdM-BodVTtE-Iy3_cOk5sYX5j0VufkWSmunA,39225
81
81
  digichem/result/multi.py,sha256=IzupKHMcXTf6AReeUCjY9Szy2b4TdOHVtC2Tlb9xg0o,4330
82
82
  digichem/result/nmr.py,sha256=u3qXZRrTBvUnfJexrtEHZLIyQ4dq_zFDXwcC2PoEGqQ,47263
83
83
  digichem/result/orbital.py,sha256=6BX4GfnLJRj_AZs75FWPLFX6r0z9OL0OSh1v8EOHqws,28271
@@ -92,23 +92,25 @@ digichem/result/alignment/FAP.py,sha256=so_eTIqdFIBVHinG_17tc4n-CS4A622r4RXndVkO
92
92
  digichem/result/alignment/__init__.py,sha256=9OLZUCENNfsPb-_BWpRKY1y0YwPTE-Lh2Au30RrExoU,88
93
93
  digichem/result/alignment/base.py,sha256=KY_uQxP5NYgU7hOW028FR63xqskf2I4-wnFC_YAVYJM,11811
94
94
  digichem/test/__init__.py,sha256=5rcWC-jYpwJf9DZD3RUzsrZtQXGre0oFnaE3xKiZYlY,116
95
- digichem/test/conftest.py,sha256=5_KcDWY_ZaSYgib-xlA4mvefTqjbAveipcm6ePtwQcw,124
95
+ digichem/test/conftest.py,sha256=hy9geS4NwXOTrHGO-HnDP3hp_eoPGIToODBXBF3Kcuw,282
96
96
  digichem/test/test_basis.py,sha256=is1GdrWhmWJdA18fw1lagmbg8VGlX6_-LKOhjTcjHaQ,1720
97
97
  digichem/test/test_calculate.py,sha256=Zvon7TlmVLwIvtaXXMmWJrkvljJ9zWZge6zIyjbx_N0,1486
98
98
  digichem/test/test_config.py,sha256=JZGOpSAGQ70n4gGW4sCPCLycygtECOKejB9742nmnj0,2323
99
99
  digichem/test/test_cube.py,sha256=y1Cr0cz00pwSWT-z-PgUQAzp41Ttsk_Ti_eQXagzO1Q,14110
100
100
  digichem/test/test_exception.py,sha256=f-8XVQqq9gfJFpURjOoEfcC4pxieye8ZxvmguoN9QyY,530
101
101
  digichem/test/test_file.py,sha256=n2BJ55_AjNY7IGEjHjJJ-OhE4Lgn3pGyyyfnPIduges,3682
102
- digichem/test/test_image.py,sha256=x7ybEIeZg0E8ZQdkSzdy1cNWymYie6gWoTR8Q3ebcEQ,11516
102
+ digichem/test/test_image.py,sha256=bGb6xdn4k2VxZlVef0HI2HPrQdxx5XUTMyl97iYzzT8,13598
103
103
  digichem/test/test_input.py,sha256=TLGFxsSYGKTUSO5fxjZN2VqzDZFP3AHlbrE2JGmnq8g,1787
104
104
  digichem/test/test_memory.py,sha256=wKxAOtDm7d9aNbpgdgjacVPCBGdDUKx5f_3OGsGuWR0,582
105
105
  digichem/test/test_parsing.py,sha256=c-YV8TGp08P5d2acio_5cP-qXunpyMrs6pnB7MxZ1Ww,6312
106
106
  digichem/test/test_prattle.py,sha256=x-CeVX3Gbs5BHGndBGrtseGZwgUm3jamxstFijmKB5w,1033
107
107
  digichem/test/test_result.py,sha256=DmaAdSTGV6UoHigiy6P38cT3y4ef57Ji6Ot4m2BZfLs,24327
108
108
  digichem/test/test_translate.py,sha256=_3FkYottqHZGxMSTJkbcE8dQXhQlrNlVS0FjMopIwl4,3575
109
- digichem/test/util.py,sha256=jud84z2JkQAH3xi1ZnXvpJMdjlKLknz7AyoeZmdwojE,8681
110
- digichem_core-6.10.1.dist-info/METADATA,sha256=DjiNYjPql6EXEKmcByyeOni_ZUgfkc_JPzOcJeZrOKM,4099
111
- digichem_core-6.10.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
112
- digichem_core-6.10.1.dist-info/licenses/COPYING.md,sha256=d-yG6IJrlqLkuiuoOFe331YKzMRS05pnmk4e98gu9pQ,900
113
- digichem_core-6.10.1.dist-info/licenses/LICENSE,sha256=ZLlePQN2WLgdvmIGLEjjHtgIoneUGR2MgE9yjMg1JiY,1457
114
- digichem_core-6.10.1.dist-info/RECORD,,
109
+ digichem/test/util.py,sha256=p7KgyR9VGPstD7y8FH0onIxgY4YCvSCmbtJ-kJggxeA,8798
110
+ digichem/test/mock/cubegen,sha256=h2HvmW8YbmYDqycnfCJYstZ2yO1uUxErbCWFKgzXaJ8,6781858
111
+ digichem/test/mock/formchk,sha256=KZWhyJtaMXAGX1Xlx7Ikw9gbncOqLrpYkynz9IMYUlY,756867
112
+ digichem_core-6.10.3.dist-info/METADATA,sha256=kKKd8-ojAePA1PtA4225RZLPB0ntS2k8ddAGEQYkJjA,4099
113
+ digichem_core-6.10.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
114
+ digichem_core-6.10.3.dist-info/licenses/COPYING.md,sha256=d-yG6IJrlqLkuiuoOFe331YKzMRS05pnmk4e98gu9pQ,900
115
+ digichem_core-6.10.3.dist-info/licenses/LICENSE,sha256=ZLlePQN2WLgdvmIGLEjjHtgIoneUGR2MgE9yjMg1JiY,1457
116
+ digichem_core-6.10.3.dist-info/RECORD,,