ben-chem-tools 0.1.0__tar.gz → 0.3.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ben-chem-tools
3
- Version: 0.1.0
3
+ Version: 0.3.0
4
4
  Summary: common useful tools for computational chemistry
5
5
  Author: Ben
6
6
  Author-email: Ben <bennyp2494@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ben-chem-tools"
3
- version = "0.1.0"
3
+ version = "0.3.0"
4
4
  description = "common useful tools for computational chemistry"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -18,11 +18,11 @@ class xyz_atom:
18
18
  except ValueError:
19
19
  raise ValueError("x_coord must be a numeric value.")
20
20
  try:
21
- self.y_coord = float(x_coord)
21
+ self.y_coord = float(y_coord)
22
22
  except ValueError:
23
23
  raise ValueError("y_coord must be a numeric value.")
24
24
  try:
25
- self.z_coord = float(x_coord)
25
+ self.z_coord = float(z_coord)
26
26
  except ValueError:
27
27
  raise ValueError("z_coord must be a numeric value.")
28
28
 
@@ -1,7 +1,7 @@
1
1
  from glob import glob
2
2
  import cclib
3
3
  import periodictable as pt
4
- from geometries import xyz_molecule, xyz_atom
4
+ from .geometries import xyz_molecule, xyz_atom
5
5
  import os
6
6
 
7
7
 
File without changes