ucon 0.3.1rc2__tar.gz → 0.3.1rc4__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.1rc2 → ucon-0.3.1rc4}/PKG-INFO +5 -4
  2. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/README.md +4 -3
  3. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon.egg-info/PKG-INFO +5 -4
  4. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon.egg-info/SOURCES.txt +0 -1
  5. ucon-0.3.1rc2/docs/assets/ucon.data-model.svg +0 -67
  6. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/.github/workflows/publish.yaml +0 -0
  7. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/.github/workflows/tests.yaml +0 -0
  8. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/.gitignore +0 -0
  9. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/LICENSE +0 -0
  10. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ROADMAP.md +0 -0
  11. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/noxfile.py +0 -0
  12. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/requirements.txt +0 -0
  13. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/setup.cfg +0 -0
  14. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/setup.py +0 -0
  15. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/tests/__init__.py +0 -0
  16. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/tests/ucon/__init__.py +0 -0
  17. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/tests/ucon/test_core.py +0 -0
  18. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/tests/ucon/test_dimension.py +0 -0
  19. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/tests/ucon/test_unit.py +0 -0
  20. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/tests/ucon/test_units.py +0 -0
  21. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon/__init__.py +0 -0
  22. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon/core.py +0 -0
  23. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon/dimension.py +0 -0
  24. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon/unit.py +0 -0
  25. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon/units.py +0 -0
  26. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/ucon.egg-info/dependency_links.txt +0 -0
  27. {ucon-0.3.1rc2 → ucon-0.3.1rc4}/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.1rc2
3
+ Version: 0.3.1rc4
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
@@ -34,17 +34,18 @@ Dynamic: maintainer
34
34
  Dynamic: maintainer-email
35
35
  Dynamic: summary
36
36
 
37
- <img src="https://gist.githubusercontent.com/withtwoemms/0cb9e6bc8df08f326771a89eeb790f8e/raw/dde6c7d3b8a7d79eb1006ace03fb834e044cdebc/ucon-logo.png" align="left" width="420" />
37
+ <img src="https://gist.githubusercontent.com/withtwoemms/0cb9e6bc8df08f326771a89eeb790f8e/raw/dde6c7d3b8a7d79eb1006ace03fb834e044cdebc/ucon-logo.png" align="left" width="200" />
38
38
 
39
39
  # ucon
40
40
 
41
41
  > Pronounced: _yoo · cahn_
42
- > A lightweight, **unit-aware computation library** for Python — built on first-principles.
43
42
 
44
43
  [![tests](https://github.com/withtwoemms/ucon/workflows/tests/badge.svg)](https://github.com/withtwoemms/ucon/actions?query=workflow%3Atests)
45
44
  [![codecov](https://codecov.io/gh/withtwoemms/ucon/graph/badge.svg?token=BNONQTRJWG)](https://codecov.io/gh/withtwoemms/ucon)
46
45
  [![publish](https://github.com/withtwoemms/ucon/workflows/publish/badge.svg)](https://github.com/withtwoemms/ucon/actions?query=workflow%3Apublish)
47
46
 
47
+ > A lightweight, **unit-aware computation library** for Python — built on first-principles.
48
+
48
49
  ---
49
50
 
50
51
  ## Overview
@@ -81,7 +82,7 @@ To best answer this question, we turn to an age-old technique ([dimensional anal
81
82
 
82
83
  `ucon` models unit math through a hierarchy where each layer builds on the last:
83
84
 
84
- ![Alt text](./docs/assets/ucon.data-model.svg "Data Model Diagram")
85
+ <img src=https://gist.githubusercontent.com/withtwoemms/429d2ca1f979865aa80a2658bf9efa32/raw/f3518d37445301950026fc9ffd1bd062768005fe/ucon.data-model.png align="center" alt="ucon Data Model" width=600/>
85
86
 
86
87
  ## Why `ucon`?
87
88
 
@@ -1,14 +1,15 @@
1
- <img src="https://gist.githubusercontent.com/withtwoemms/0cb9e6bc8df08f326771a89eeb790f8e/raw/dde6c7d3b8a7d79eb1006ace03fb834e044cdebc/ucon-logo.png" align="left" width="420" />
1
+ <img src="https://gist.githubusercontent.com/withtwoemms/0cb9e6bc8df08f326771a89eeb790f8e/raw/dde6c7d3b8a7d79eb1006ace03fb834e044cdebc/ucon-logo.png" align="left" width="200" />
2
2
 
3
3
  # ucon
4
4
 
5
5
  > Pronounced: _yoo · cahn_
6
- > A lightweight, **unit-aware computation library** for Python — built on first-principles.
7
6
 
8
7
  [![tests](https://github.com/withtwoemms/ucon/workflows/tests/badge.svg)](https://github.com/withtwoemms/ucon/actions?query=workflow%3Atests)
9
8
  [![codecov](https://codecov.io/gh/withtwoemms/ucon/graph/badge.svg?token=BNONQTRJWG)](https://codecov.io/gh/withtwoemms/ucon)
10
9
  [![publish](https://github.com/withtwoemms/ucon/workflows/publish/badge.svg)](https://github.com/withtwoemms/ucon/actions?query=workflow%3Apublish)
11
10
 
11
+ > A lightweight, **unit-aware computation library** for Python — built on first-principles.
12
+
12
13
  ---
13
14
 
14
15
  ## Overview
@@ -45,7 +46,7 @@ To best answer this question, we turn to an age-old technique ([dimensional anal
45
46
 
46
47
  `ucon` models unit math through a hierarchy where each layer builds on the last:
47
48
 
48
- ![Alt text](./docs/assets/ucon.data-model.svg "Data Model Diagram")
49
+ <img src=https://gist.githubusercontent.com/withtwoemms/429d2ca1f979865aa80a2658bf9efa32/raw/f3518d37445301950026fc9ffd1bd062768005fe/ucon.data-model.png align="center" alt="ucon Data Model" width=600/>
49
50
 
50
51
  ## Why `ucon`?
51
52
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ucon
3
- Version: 0.3.1rc2
3
+ Version: 0.3.1rc4
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
@@ -34,17 +34,18 @@ Dynamic: maintainer
34
34
  Dynamic: maintainer-email
35
35
  Dynamic: summary
36
36
 
37
- <img src="https://gist.githubusercontent.com/withtwoemms/0cb9e6bc8df08f326771a89eeb790f8e/raw/dde6c7d3b8a7d79eb1006ace03fb834e044cdebc/ucon-logo.png" align="left" width="420" />
37
+ <img src="https://gist.githubusercontent.com/withtwoemms/0cb9e6bc8df08f326771a89eeb790f8e/raw/dde6c7d3b8a7d79eb1006ace03fb834e044cdebc/ucon-logo.png" align="left" width="200" />
38
38
 
39
39
  # ucon
40
40
 
41
41
  > Pronounced: _yoo · cahn_
42
- > A lightweight, **unit-aware computation library** for Python — built on first-principles.
43
42
 
44
43
  [![tests](https://github.com/withtwoemms/ucon/workflows/tests/badge.svg)](https://github.com/withtwoemms/ucon/actions?query=workflow%3Atests)
45
44
  [![codecov](https://codecov.io/gh/withtwoemms/ucon/graph/badge.svg?token=BNONQTRJWG)](https://codecov.io/gh/withtwoemms/ucon)
46
45
  [![publish](https://github.com/withtwoemms/ucon/workflows/publish/badge.svg)](https://github.com/withtwoemms/ucon/actions?query=workflow%3Apublish)
47
46
 
47
+ > A lightweight, **unit-aware computation library** for Python — built on first-principles.
48
+
48
49
  ---
49
50
 
50
51
  ## Overview
@@ -81,7 +82,7 @@ To best answer this question, we turn to an age-old technique ([dimensional anal
81
82
 
82
83
  `ucon` models unit math through a hierarchy where each layer builds on the last:
83
84
 
84
- ![Alt text](./docs/assets/ucon.data-model.svg "Data Model Diagram")
85
+ <img src=https://gist.githubusercontent.com/withtwoemms/429d2ca1f979865aa80a2658bf9efa32/raw/f3518d37445301950026fc9ffd1bd062768005fe/ucon.data-model.png align="center" alt="ucon Data Model" width=600/>
85
86
 
86
87
  ## Why `ucon`?
87
88
 
@@ -7,7 +7,6 @@ requirements.txt
7
7
  setup.py
8
8
  .github/workflows/publish.yaml
9
9
  .github/workflows/tests.yaml
10
- docs/assets/ucon.data-model.svg
11
10
  tests/__init__.py
12
11
  tests/ucon/__init__.py
13
12
  tests/ucon/test_core.py