qnty 0.1.2__tar.gz → 0.1.3__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.
- {qnty-0.1.2 → qnty-0.1.3}/PKG-INFO +1 -1
- {qnty-0.1.2 → qnty-0.1.3}/pyproject.toml +1 -1
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/field_vars.py +3011 -15
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/field_vars.pyi +856 -0
- {qnty-0.1.2 → qnty-0.1.3}/README.md +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/constants/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/constants/numerical.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/constants/solvers.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/constants/tests.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/dimensions/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/dimensions/base.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/dimensions/field_dims.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/dimensions/field_dims.pyi +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/dimensions/signature.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/equations/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/equations/equation.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/equations/system.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/expressions/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/expressions/formatter.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/expressions/functions.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/expressions/nodes.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/expressions/types.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/extensions/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/extensions/integration/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/extensions/plotting/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/extensions/reporting/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/problems/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/problems/composition.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/problems/problem.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/problems/rules.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/problems/solving.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/problems/validation.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/base_qnty.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/field_converters.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/field_qnty.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/field_setter.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/quantities/field_setter.pyi +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/manager.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/order.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/solvers/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/solvers/base.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/solvers/iterative.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/solving/solvers/simultaneous.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/units/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/units/field_units.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/units/field_units.pyi +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/units/prefixes.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/units/registry.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/caching/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/caching/manager.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/error_handling/__init__.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/error_handling/context.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/error_handling/exceptions.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/error_handling/handlers.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/logging.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/protocols.py +0 -0
- {qnty-0.1.2 → qnty-0.1.3}/src/qnty/utils/scope_discovery.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: qnty
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: High-performance unit system library for Python with dimensional safety and fast unit conversions
|
5
5
|
License: Apache-2.0
|
6
6
|
Keywords: units,dimensional analysis,engineering,physics,quantities,measurements
|