ucon 0.3.1rc1__tar.gz → 0.3.1rc2__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 (27) hide show
  1. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/PKG-INFO +2 -30
  2. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/README.md +1 -29
  3. ucon-0.3.1rc2/docs/assets/ucon.data-model.svg +67 -0
  4. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon.egg-info/PKG-INFO +2 -30
  5. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon.egg-info/SOURCES.txt +1 -0
  6. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/.github/workflows/publish.yaml +0 -0
  7. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/.github/workflows/tests.yaml +0 -0
  8. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/.gitignore +0 -0
  9. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/LICENSE +0 -0
  10. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ROADMAP.md +0 -0
  11. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/noxfile.py +0 -0
  12. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/requirements.txt +0 -0
  13. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/setup.cfg +0 -0
  14. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/setup.py +0 -0
  15. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/tests/__init__.py +0 -0
  16. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/tests/ucon/__init__.py +0 -0
  17. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/tests/ucon/test_core.py +0 -0
  18. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/tests/ucon/test_dimension.py +0 -0
  19. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/tests/ucon/test_unit.py +0 -0
  20. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/tests/ucon/test_units.py +0 -0
  21. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon/__init__.py +0 -0
  22. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon/core.py +0 -0
  23. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon/dimension.py +0 -0
  24. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon/unit.py +0 -0
  25. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon/units.py +0 -0
  26. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/ucon.egg-info/dependency_links.txt +0 -0
  27. {ucon-0.3.1rc1 → ucon-0.3.1rc2}/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.1rc1
3
+ Version: 0.3.1rc2
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
@@ -81,35 +81,7 @@ To best answer this question, we turn to an age-old technique ([dimensional anal
81
81
 
82
82
  `ucon` models unit math through a hierarchy where each layer builds on the last:
83
83
 
84
- ```
85
- ---
86
- config:
87
- layout: elk
88
- elk:
89
- mergeEdges: true # Combines parallel edges
90
- nodePlacementStrategy: SIMPLE # Other options: SIMPLE, NETWORK_SIMPLEX, BRANDES_KOEPF (default)
91
- ---
92
- flowchart LR
93
- %% --- Algebraic substrate ---
94
- subgraph "Algebraic Substrate"
95
- A[Exponent] --> B[Scale]
96
- end
97
- %% --- Physical ontology ---
98
- subgraph "Physical Ontology"
99
- D[Dimension] --> E[Unit]
100
- end
101
- %% --- Value layer ---
102
- subgraph "Value Layer"
103
- F[Number]
104
- G[Ratio]
105
- end
106
- %% --- Cross-layer relationships ---
107
- E --> F
108
- B --> F
109
- %% Ratio composes Numbers and also evaluates to a Number
110
- F --> G
111
- G --> F
112
- ```
84
+ ![Alt text](./docs/assets/ucon.data-model.svg "Data Model Diagram")
113
85
 
114
86
  ## Why `ucon`?
115
87
 
@@ -45,35 +45,7 @@ To best answer this question, we turn to an age-old technique ([dimensional anal
45
45
 
46
46
  `ucon` models unit math through a hierarchy where each layer builds on the last:
47
47
 
48
- ```
49
- ---
50
- config:
51
- layout: elk
52
- elk:
53
- mergeEdges: true # Combines parallel edges
54
- nodePlacementStrategy: SIMPLE # Other options: SIMPLE, NETWORK_SIMPLEX, BRANDES_KOEPF (default)
55
- ---
56
- flowchart LR
57
- %% --- Algebraic substrate ---
58
- subgraph "Algebraic Substrate"
59
- A[Exponent] --> B[Scale]
60
- end
61
- %% --- Physical ontology ---
62
- subgraph "Physical Ontology"
63
- D[Dimension] --> E[Unit]
64
- end
65
- %% --- Value layer ---
66
- subgraph "Value Layer"
67
- F[Number]
68
- G[Ratio]
69
- end
70
- %% --- Cross-layer relationships ---
71
- E --> F
72
- B --> F
73
- %% Ratio composes Numbers and also evaluates to a Number
74
- F --> G
75
- G --> F
76
- ```
48
+ ![Alt text](./docs/assets/ucon.data-model.svg "Data Model Diagram")
77
49
 
78
50
  ## Why `ucon`?
79
51