crossvib 0.1.0__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.
crossvib/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """CrossVib — cross-environment vibrational normal-mode correlation and classification.
2
+
3
+ Classifies vibrational modes from vibAnalysis (VMARD) ``.nma`` output — or directly
4
+ from ORCA ``.hess`` files — and correlates modes between two calculations of the same
5
+ chemical system in different environments (solvent, surface, method, oxidation state).
6
+
7
+ The comparison uses a common internal-coordinate projection with a phase-aware signed
8
+ overlap and a symmetrised Shannon mixing index, giving the identity-retention metric
9
+ ``P_ret = 1 - H_bar`` in [0, 1]. Because the basis is the *intersection* of internal
10
+ coordinates after atom mapping, the analysis is independent of atom count — the
11
+ signature capability for free-molecule vs. interacting-system comparisons.
12
+ """
13
+ from __future__ import annotations
14
+
15
+ from crossvib.core import main
16
+
17
+ __all__ = ["main", "__version__"]
18
+ __version__ = "0.1.0"
crossvib/__main__.py ADDED
@@ -0,0 +1,9 @@
1
+ """Entry point for ``python -m crossvib``."""
2
+ from __future__ import annotations
3
+
4
+ import sys
5
+
6
+ from crossvib.core import main
7
+
8
+ if __name__ == "__main__":
9
+ sys.exit(main())