python-qis 1.2.1__tar.gz → 1.2.2__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.
- {python_qis-1.2.1 → python_qis-1.2.2}/PKG-INFO +1 -1
- {python_qis-1.2.1 → python_qis-1.2.2}/pyproject.toml +1 -1
- {python_qis-1.2.1 → python_qis-1.2.2}/pyproject.toml.orig +1 -1
- {python_qis-1.2.1 → python_qis-1.2.2}/src/python_qis/__init__.py +9 -1
- {python_qis-1.2.1 → python_qis-1.2.2}/README.md +0 -0
- {python_qis-1.2.1 → python_qis-1.2.2}/src/python_qis/cryptography_tools.py +0 -0
- {python_qis-1.2.1 → python_qis-1.2.2}/src/python_qis/math/general.py +0 -0
- {python_qis-1.2.1 → python_qis-1.2.2}/src/python_qis/math/qis.py +0 -0
- {python_qis-1.2.1 → python_qis-1.2.2}/src/python_qis/physics_tools.py +0 -0
|
@@ -2,8 +2,16 @@ import python_qis.math.general as general_math
|
|
|
2
2
|
import python_qis.math.qis as qis_math
|
|
3
3
|
import python_qis.cryptography_tools as cryptography_tools
|
|
4
4
|
import python_qis.physics_tools as physics_tools
|
|
5
|
+
from typing import Literal
|
|
5
6
|
|
|
6
|
-
physics_constants: dict[
|
|
7
|
+
physics_constants: dict[
|
|
8
|
+
Literal[
|
|
9
|
+
"H_JOULE_SEC",
|
|
10
|
+
"HBAR_JOULE_SEC",
|
|
11
|
+
"BOLTZMANN_CONSTANT",
|
|
12
|
+
"SPEED_OF_LIGHT",
|
|
13
|
+
"ELEMENTARY_CHARGE"
|
|
14
|
+
], complex | float] = {
|
|
7
15
|
"H_JOULE_SEC": physics_tools.H_JOULE_SEC,
|
|
8
16
|
"HBAR_JOULE_SEC": physics_tools.HBAR_JOULE_SEC,
|
|
9
17
|
"BOLTZMANN_CONSTANT": physics_tools.BOLTZMANN_CONSTANT,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|