stjames 0.0.16__tar.gz → 0.0.17__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 stjames might be problematic. Click here for more details.

Files changed (28) hide show
  1. {stjames-0.0.16/stjames.egg-info → stjames-0.0.17}/PKG-INFO +1 -1
  2. {stjames-0.0.16 → stjames-0.0.17}/pyproject.toml +1 -1
  3. {stjames-0.0.16 → stjames-0.0.17}/stjames/int_settings.py +1 -1
  4. {stjames-0.0.16 → stjames-0.0.17}/stjames/settings.py +2 -2
  5. {stjames-0.0.16 → stjames-0.0.17}/stjames/solvent_settings.py +1 -1
  6. {stjames-0.0.16 → stjames-0.0.17/stjames.egg-info}/PKG-INFO +1 -1
  7. {stjames-0.0.16 → stjames-0.0.17}/LICENSE +0 -0
  8. {stjames-0.0.16 → stjames-0.0.17}/README.md +0 -0
  9. {stjames-0.0.16 → stjames-0.0.17}/setup.cfg +0 -0
  10. {stjames-0.0.16 → stjames-0.0.17}/stjames/__init__.py +0 -0
  11. {stjames-0.0.16 → stjames-0.0.17}/stjames/base.py +0 -0
  12. {stjames-0.0.16 → stjames-0.0.17}/stjames/basis_set.py +0 -0
  13. {stjames-0.0.16 → stjames-0.0.17}/stjames/calculation.py +0 -0
  14. {stjames-0.0.16 → stjames-0.0.17}/stjames/corrections.py +0 -0
  15. {stjames-0.0.16 → stjames-0.0.17}/stjames/diis_settings.py +0 -0
  16. {stjames-0.0.16 → stjames-0.0.17}/stjames/grid_settings.py +0 -0
  17. {stjames-0.0.16 → stjames-0.0.17}/stjames/methods.py +0 -0
  18. {stjames-0.0.16 → stjames-0.0.17}/stjames/modes.py +0 -0
  19. {stjames-0.0.16 → stjames-0.0.17}/stjames/molecule.py +0 -0
  20. {stjames-0.0.16 → stjames-0.0.17}/stjames/opt_settings.py +0 -0
  21. {stjames-0.0.16 → stjames-0.0.17}/stjames/scf_settings.py +0 -0
  22. {stjames-0.0.16 → stjames-0.0.17}/stjames/status.py +0 -0
  23. {stjames-0.0.16 → stjames-0.0.17}/stjames/tasks.py +0 -0
  24. {stjames-0.0.16 → stjames-0.0.17}/stjames/thermochem_settings.py +0 -0
  25. {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/SOURCES.txt +0 -0
  26. {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/dependency_links.txt +0 -0
  27. {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/requires.txt +0 -0
  28. {stjames-0.0.16 → stjames-0.0.17}/stjames.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stjames
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: standardized JSON atom/molecule encoding scheme
5
5
  Author-email: Corin Wagen <corin@rowansci.com>
6
6
  Project-URL: Homepage, https://github.com/rowansci/stjames
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "stjames"
3
- version = "0.0.16"
3
+ version = "0.0.17"
4
4
  description = "standardized JSON atom/molecule encoding scheme"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
@@ -27,5 +27,5 @@ class IntSettings(Base):
27
27
 
28
28
  @property
29
29
  def resolution_of_the_identity(self) -> bool:
30
- """ Abstracting in case we add RIJCOSX, etc later """
30
+ """Abstracting in case we add RIJCOSX, etc later"""
31
31
  return self.strategy == ERIStrategy.RIJK
@@ -28,7 +28,7 @@ class Settings(Base):
28
28
  @pydantic.computed_field
29
29
  @property
30
30
  def level_of_theory(self) -> str:
31
- if self.method in [Method.HF3C, Method.B973C]:
31
+ if self.method in [Method.HF3C, Method.B973C, Method.AIMNET2_WB97MD3]:
32
32
  return self.method.value
33
33
  elif (len(self.corrections)) == 0 or (self.method in [Method.B97D3]):
34
34
  return f"{self.method.value}/{self.basis_set.name.lower()}"
@@ -150,7 +150,7 @@ def _assign_settings_by_mode(settings: Settings) -> None:
150
150
  opt_settings = settings.opt_settings
151
151
 
152
152
  # constrained optimizations warrant loosening the settings a bit
153
- has_constraints = (len(opt_settings.constraints) > 0)
153
+ has_constraints = len(opt_settings.constraints) > 0
154
154
 
155
155
  # cf. DLFIND manual, and https://www.cup.uni-muenchen.de/ch/compchem/geom/basic.html
156
156
  # and the discussion at https://geometric.readthedocs.io/en/latest/how-it-works.html
@@ -1,8 +1,8 @@
1
- from typing import Optional, Any
2
1
  import pydantic
3
2
 
4
3
  from .base import Base, LowercaseStrEnum
5
4
 
5
+
6
6
  class ImplicitSolventModel(LowercaseStrEnum):
7
7
  CPCM = "cpcm"
8
8
  NONE = "none"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stjames
3
- Version: 0.0.16
3
+ Version: 0.0.17
4
4
  Summary: standardized JSON atom/molecule encoding scheme
5
5
  Author-email: Corin Wagen <corin@rowansci.com>
6
6
  Project-URL: Homepage, https://github.com/rowansci/stjames
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