ucon 0.3.5__tar.gz → 0.3.5rc2__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.
Files changed (38) hide show
  1. {ucon-0.3.5 → ucon-0.3.5rc2}/PKG-INFO +1 -1
  2. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon/__init__.py +1 -3
  3. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon.egg-info/PKG-INFO +1 -1
  4. {ucon-0.3.5 → ucon-0.3.5rc2}/.github/workflows/publish.yaml +0 -0
  5. {ucon-0.3.5 → ucon-0.3.5rc2}/.github/workflows/tests.yaml +0 -0
  6. {ucon-0.3.5 → ucon-0.3.5rc2}/.gitignore +0 -0
  7. {ucon-0.3.5 → ucon-0.3.5rc2}/LICENSE +0 -0
  8. {ucon-0.3.5 → ucon-0.3.5rc2}/NOTICE +0 -0
  9. {ucon-0.3.5 → ucon-0.3.5rc2}/README.md +0 -0
  10. {ucon-0.3.5 → ucon-0.3.5rc2}/ROADMAP.md +0 -0
  11. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/decisions/composable-unit-algebra.md +0 -0
  12. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/decisions/composite-units.md +0 -0
  13. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/decisions/unit-algebra-naming.md +0 -0
  14. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/decisions/unity-distance-metric-for-nearest-scale.md +0 -0
  15. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/explainers/type-operation-matrix.md +0 -0
  16. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/explainers/why-algebraic-closure-matters.md +0 -0
  17. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/explainers/why-type-safety-matters.md +0 -0
  18. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/proposals/interface-unifying-the-value-layer.md +0 -0
  19. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/proposals/project_unified-algebraic-core.md +0 -0
  20. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/proposals/support-for-fractional-exponents.md +0 -0
  21. {ucon-0.3.5 → ucon-0.3.5rc2}/docs/proposals/unified-unit-presentation.md +0 -0
  22. {ucon-0.3.5 → ucon-0.3.5rc2}/noxfile.py +0 -0
  23. {ucon-0.3.5 → ucon-0.3.5rc2}/requirements.txt +0 -0
  24. {ucon-0.3.5 → ucon-0.3.5rc2}/setup.cfg +0 -0
  25. {ucon-0.3.5 → ucon-0.3.5rc2}/setup.py +0 -0
  26. {ucon-0.3.5 → ucon-0.3.5rc2}/tests/__init__.py +0 -0
  27. {ucon-0.3.5 → ucon-0.3.5rc2}/tests/ucon/__init__.py +0 -0
  28. {ucon-0.3.5 → ucon-0.3.5rc2}/tests/ucon/test_algebra.py +0 -0
  29. {ucon-0.3.5 → ucon-0.3.5rc2}/tests/ucon/test_core.py +0 -0
  30. {ucon-0.3.5 → ucon-0.3.5rc2}/tests/ucon/test_quantity.py +0 -0
  31. {ucon-0.3.5 → ucon-0.3.5rc2}/tests/ucon/test_units.py +0 -0
  32. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon/algebra.py +0 -0
  33. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon/core.py +0 -0
  34. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon/quantity.py +0 -0
  35. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon/units.py +0 -0
  36. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon.egg-info/SOURCES.txt +0 -0
  37. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon.egg-info/dependency_links.txt +0 -0
  38. {ucon-0.3.5 → ucon-0.3.5rc2}/ucon.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ucon
3
- Version: 0.3.5
3
+ Version: 0.3.5rc2
4
4
  Summary: a tool for dimensional analysis: a "Unit CONverter"
5
5
  Home-page: https://github.com/withtwoemms/ucon
6
6
  Author: Emmanuel I. Obi
@@ -38,7 +38,7 @@ Design Philosophy
38
38
  """
39
39
  from ucon import units
40
40
  from ucon.algebra import Exponent
41
- from ucon.core import Dimension, Scale, Unit, UnitFactor, UnitProduct
41
+ from ucon.core import Dimension, Scale, Unit
42
42
  from ucon.quantity import Number, Ratio
43
43
 
44
44
 
@@ -49,7 +49,5 @@ __all__ = [
49
49
  'Ratio',
50
50
  'Scale',
51
51
  'Unit',
52
- 'UnitFactor',
53
- 'UnitProduct',
54
52
  'units',
55
53
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ucon
3
- Version: 0.3.5
3
+ Version: 0.3.5rc2
4
4
  Summary: a tool for dimensional analysis: a "Unit CONverter"
5
5
  Home-page: https://github.com/withtwoemms/ucon
6
6
  Author: Emmanuel I. Obi
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes