metrolopy 0.6.2__py3-none-any.whl → 0.6.4__py3-none-any.whl

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.
metrolopy/ummy.py CHANGED
@@ -664,10 +664,10 @@ class ummy(Dfunc,PrettyPrinter):
664
664
  if r > cls.max_dof:
665
665
  return float('inf')
666
666
 
667
- if r < -1e-6:
668
- raise ValueError('dof is negative')
667
+ #if r < -1e-6:
668
+ #raise ValueError('dof is negative')
669
669
  if r < 0:
670
- r == 1
670
+ r = 1
671
671
 
672
672
  return r
673
673
 
@@ -1266,14 +1266,18 @@ class ummy(Dfunc,PrettyPrinter):
1266
1266
  return []
1267
1267
  x = t.get_values()
1268
1268
  return x
1269
+ elif hasattr(x,'value') and isinstance(x.value,ummy):
1270
+ return [x.value]
1269
1271
 
1270
1272
  xl = []
1271
1273
  for e in x:
1272
- if isinstance(e,ummy):
1273
- xl.append(e)
1274
- if isinstance(e,GummyTag):
1274
+ if hasattr(e,'value') and isinstance(e.value,ummy):
1275
+ xl.append(e.value)
1276
+ elif isinstance(e,ummy):
1277
+ xl.append(e)
1278
+ elif isinstance(e,GummyTag):
1275
1279
  xl += e.get_values()
1276
- if isinstance(e,str):
1280
+ elif isinstance(e,str):
1277
1281
  t = GummyTag.tags.get(e)
1278
1282
  if t is not None:
1279
1283
  xl += t.get_values()
metrolopy/unitparser.py CHANGED
@@ -134,7 +134,7 @@ class _UnitParser:
134
134
  c = self.txt[self.i]
135
135
  if c == '(':
136
136
  if par == 0:
137
- if cl.ispace() or cl == '*':
137
+ if cl.isspace() or cl == '*':
138
138
  f = float(et)
139
139
  if np.modf(f)[0] == 0:
140
140
  return int(f)
@@ -147,7 +147,7 @@ class _UnitParser:
147
147
  else:
148
148
  par += 1
149
149
  elif c == '[':
150
- if cl.ispace() or cl == '*':
150
+ if cl.isspace() or cl == '*':
151
151
  f = float(et)
152
152
  if np.modf(f)[0] == 0:
153
153
  return int(f)
metrolopy/version.py CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # module version
4
4
 
5
- # Copyright (C) 2019 National Research Council Canada
5
+ # Copyright (C) 2025 National Research Council Canada
6
6
  # Author: Harold Parks
7
7
 
8
8
  # This file is part of MetroloPy.
@@ -20,4 +20,4 @@
20
20
  # You should have received a copy of the GNU General Public License along with
21
21
  # MetroloPy. If not, see <http://www.gnu.org/licenses/>.
22
22
 
23
- __version__ = '0.6.2'
23
+ __version__ = '0.6.4'
@@ -1,94 +1,102 @@
1
- Metadata-Version: 2.1
2
- Name: metrolopy
3
- Version: 0.6.2
4
- Summary: tools for dealing with measured quantities: uncertainty propagation and unit conversion
5
- Home-page: http://nrc-cnrc.github.io/MetroloPy/
6
- Author: Harold Parks, National Research Council Canada
7
- Author-email: parksh@nrc.ca
8
- License: UNKNOWN
9
- Platform: UNKNOWN
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: Operating System :: OS Independent
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Framework :: Jupyter
14
- Classifier: Framework :: IPython
15
- Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
16
- Classifier: Intended Audience :: Science/Research
17
- Classifier: Intended Audience :: Education
18
- Classifier: Topic :: Scientific/Engineering :: Physics
19
- Requires-Python: >=3.5
20
- Description-Content-Type: text/markdown
21
- Requires-Dist: numpy (>=1.13)
22
- Requires-Dist: scipy
23
- Requires-Dist: matplotlib
24
- Requires-Dist: pandas
25
- Provides-Extra: pretty
26
- Requires-Dist: IPython ; extra == 'pretty'
27
-
28
- # MetroloPy
29
-
30
- tools for dealing with physical quantities: uncertainty propagation and unit conversion
31
-
32
- ---
33
-
34
- MetroloPy is a pure python package and requires Python 3.5 or later and the SciPy stack (NumPy, SciPy and Pandas). It looks best in a Jupyter Notebook.
35
-
36
- Install MetroloPy with `pip install metrolopy` or
37
- `conda install -c conda-forge metrolopy`.
38
-
39
- Physical quantities can then be represented in Python as `gummy` objects with an uncertainty and (or) a unit:
40
-
41
- <pre><code>&gt;&gt;&gt; import metrolopy as uc
42
- &gt;&gt;&gt; a = uc.gummy(1.2345,u=0.0234,unit='cm')
43
- &gt;&gt;&gt; a
44
- 1.234(23) cm
45
-
46
- &gt;&gt;&gt; b = uc.gummy(3.034,u=0.174,unit='mm')
47
- &gt;&gt;&gt; f = uc.gummy(uc.UniformDist(center=0.9345,half_width=0.096),unit='N')
48
- &gt;&gt;&gt; p = f/(a*b)
49
- &gt;&gt;&gt; p
50
- 2.50(21) N/cm<sup>2</sup>
51
-
52
- &gt;&gt;&gt; p.unit = 'kPa'
53
- &gt;&gt;&gt; p.uunit = '%'
54
- &gt;&gt;&gt; p
55
- 25.0 kPa &plusmn; 8.5%
56
- </code></pre>
57
-
58
- MetroloPy can do much more including Monte-Carlo uncertainty propagation, generating uncertainty budget tables, and curve fitting. It can also handle expanded uncertainties, degrees of freedom, correlated quantities, and complex valued quantities. See:
59
-
60
- * [a tutorial](https://nrc-cnrc.github.io/MetroloPy/_build/html/_static/tutorial.html) (or <a href="https://nrc-cnrc.github.io/MetroloPy/_build/html/_downloads/tutorial.ipynb" download> download the tutorial as Jupyter notebook</a>)
61
- * [the documentation](https://nrc-cnrc.github.io/MetroloPy/)
62
- * [the issues page on GitHub](https://github.com/nrc-cnrc/Metrolopy/issues)
63
- * [a list of the units built into MetroloPy](https://nrc-cnrc.github.io/MetroloPy/_static/units.html)
64
- * [a list of the physical constants built into MetroloPy](https://nrc-cnrc.github.io/MetroloPy/_static/constants.html)
65
-
66
- ## new in version 0.6.0
67
-
68
- * A constant library has been added with physical constants that can be accessed
69
- by name or alias with the `constant` function. The `search_constants` function
70
- with no argument gives a listing of all built-in constants. Each constant
71
- definition includes any correlations with other constants.
72
-
73
- * The `Quantity` class has been added to represent a general numerical value
74
- multiplied by a unit and the `unit` function has been added to retrieve
75
- `Unit` instances from the unit library by name or alias. `Unit` instances
76
- can now be multiplied and divided by other `Unit` instances to produce
77
- composite units, can be multiplied and divided by numbers to produce
78
- `Quantity` instances or multiply or divide `Quantity` instances. The
79
- `gummy` class is now a subclass of `Quantity` with a `nummy` value rather
80
- than a subclass of `nummy`. A `QuantityArray` class has been introduced
81
- to represent an array of values all with the same unit. Multiplying a `Unit`
82
- instance by a list, tuple, or numpy array produces a `QuantityArray` instance.
83
-
84
- * The `immy` class has been introduced as an `ummy` valued counterpart of the
85
- `jummy` class for representing complex values with uncertainties. `immy`
86
- and `jummy` values can now be displayed in a polar representation in addition
87
- to a cartesian representation. `immy` and `jummy` .r and .phi properties
88
- have been added to access the magnitude and argument of the values as a
89
- complement to the .real and .imag properties.
90
-
91
-
92
-
93
-
94
-
1
+ Metadata-Version: 2.4
2
+ Name: metrolopy
3
+ Version: 0.6.4
4
+ Summary: tools for dealing with measured quantities: uncertainty propagation and unit conversion
5
+ Home-page: http://nrc-cnrc.github.io/MetroloPy/
6
+ Author: Harold Parks, National Research Council Canada
7
+ Author-email: parksh@nrc.ca
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Framework :: Jupyter
12
+ Classifier: Framework :: IPython
13
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: Intended Audience :: Education
16
+ Classifier: Topic :: Scientific/Engineering :: Physics
17
+ Requires-Python: >=3.5
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Requires-Dist: numpy>=1.13
21
+ Requires-Dist: scipy
22
+ Requires-Dist: matplotlib
23
+ Requires-Dist: pandas
24
+ Provides-Extra: pretty
25
+ Requires-Dist: IPython; extra == "pretty"
26
+ Dynamic: author
27
+ Dynamic: author-email
28
+ Dynamic: classifier
29
+ Dynamic: description
30
+ Dynamic: description-content-type
31
+ Dynamic: home-page
32
+ Dynamic: license-file
33
+ Dynamic: provides-extra
34
+ Dynamic: requires-dist
35
+ Dynamic: requires-python
36
+ Dynamic: summary
37
+
38
+ # MetroloPy
39
+
40
+ tools for dealing with physical quantities: uncertainty propagation and unit conversion
41
+
42
+ ---
43
+
44
+ MetroloPy is a pure python package and requires Python 3.5 or later and the SciPy stack (NumPy, SciPy and Pandas). It looks best in a Jupyter Notebook.
45
+
46
+ Install MetroloPy with `pip install metrolopy` or
47
+ `conda install -c conda-forge metrolopy`.
48
+
49
+ Physical quantities can then be represented in Python as `gummy` objects with an uncertainty and (or) a unit:
50
+
51
+ <pre><code>&gt;&gt;&gt; import metrolopy as uc
52
+ &gt;&gt;&gt; a = uc.gummy(1.2345,u=0.0234,unit='cm')
53
+ &gt;&gt;&gt; a
54
+ 1.234(23) cm
55
+
56
+ &gt;&gt;&gt; b = uc.gummy(3.034,u=0.174,unit='mm')
57
+ &gt;&gt;&gt; f = uc.gummy(uc.UniformDist(center=0.9345,half_width=0.096),unit='N')
58
+ &gt;&gt;&gt; p = f/(a*b)
59
+ &gt;&gt;&gt; p
60
+ 2.50(21) N/cm<sup>2</sup>
61
+
62
+ &gt;&gt;&gt; p.unit = 'kPa'
63
+ &gt;&gt;&gt; p.uunit = '%'
64
+ &gt;&gt;&gt; p
65
+ 25.0 kPa &plusmn; 8.5%
66
+ </code></pre>
67
+
68
+ MetroloPy can do much more including Monte-Carlo uncertainty propagation, generating uncertainty budget tables, and curve fitting. It can also handle expanded uncertainties, degrees of freedom, correlated quantities, and complex valued quantities. See:
69
+
70
+ * [a tutorial](https://nrc-cnrc.github.io/MetroloPy/_build/html/_static/tutorial.html) (or <a href="https://nrc-cnrc.github.io/MetroloPy/_build/html/_downloads/tutorial.ipynb" download> download the tutorial as Jupyter notebook</a>)
71
+ * [the documentation](https://nrc-cnrc.github.io/MetroloPy/)
72
+ * [the issues page on GitHub](https://github.com/nrc-cnrc/Metrolopy/issues)
73
+ * [a list of the units built into MetroloPy](https://nrc-cnrc.github.io/MetroloPy/_static/units.html)
74
+ * [a list of the physical constants built into MetroloPy](https://nrc-cnrc.github.io/MetroloPy/_static/constants.html)
75
+
76
+ ## new in version 0.6.0
77
+
78
+ * A constant library has been added with physical constants that can be accessed
79
+ by name or alias with the `constant` function. The `search_constants` function
80
+ with no argument gives a listing of all built-in constants. Each constant
81
+ definition includes any correlations with other constants.
82
+
83
+ * The `Quantity` class has been added to represent a general numerical value
84
+ multiplied by a unit and the `unit` function has been added to retrieve
85
+ `Unit` instances from the unit library by name or alias. `Unit` instances
86
+ can now be multiplied and divided by other `Unit` instances to produce
87
+ composite units, can be multiplied and divided by numbers to produce
88
+ `Quantity` instances or multiply or divide `Quantity` instances. The
89
+ `gummy` class is now a subclass of `Quantity` with a `nummy` value rather
90
+ than a subclass of `nummy`. A `QuantityArray` class has been introduced
91
+ to represent an array of values all with the same unit. Multiplying a `Unit`
92
+ instance by a list, tuple, or numpy array produces a `QuantityArray` instance.
93
+
94
+ * The `immy` class has been introduced as an `ummy` valued counterpart of the
95
+ `jummy` class for representing complex values with uncertainties. `immy`
96
+ and `jummy` values can now be displayed in a polar representation in addition
97
+ to a cartesian representation. `immy` and `jummy` .r and .phi properties
98
+ have been added to access the magnitude and argument of the values as a
99
+ complement to the .real and .imag properties.
100
+
101
+
102
+
@@ -0,0 +1,44 @@
1
+ metrolopy/__init__.py,sha256=0v85v_dekYLX9ZdvqWL5G9mYAhWmGB6BjhpKDQ590O8,1567
2
+ metrolopy/budget.py,sha256=L8NQGrtbMzyhEe6A7_7aDSct0yvBQ5pkSIowbVfFpJI,51388
3
+ metrolopy/codata2018.py,sha256=LBQwebsLZ_ZqPdfLYkY0770C0bQUgglvVXazZg4y8OM,37547
4
+ metrolopy/constant.py,sha256=2wz1FT850DEwLW6Ai6C3golEZGBQWuTKn8MMrQMA_PY,16083
5
+ metrolopy/constcom.py,sha256=ZVNaFcOVOQQ__Vm56hUyiPp4796IA7dotpDG5rBIw4w,7917
6
+ metrolopy/dfunc.py,sha256=_0XvFeOHfZzZp4vZZ1LRCSg2QEIEFvmVjm_DUMjtJLU,12439
7
+ metrolopy/distributions.py,sha256=oIRBgkU_S_kaBzQJcf-ydITVhMRUsc58yjL0wtmuUP0,45680
8
+ metrolopy/exceptions.py,sha256=tISrU8mLvqLCcan32n-wFnR2oj2-wICjbnYk0RGT0Jc,1804
9
+ metrolopy/fit.py,sha256=DFi6drCOUiJqZTvD8lfh59D4pgSZrm9RYrcDp-4yQyc,101138
10
+ metrolopy/functions.py,sha256=EIXvpqgeZ1iVFD8ygPByvWsp6EEvQ3qHBro9bX6YZqs,10051
11
+ metrolopy/gummy.py,sha256=LwuzMLRjxfTeXX4tPBxr8Rdy20CgkdfV4Eqp5dsiZPw,141062
12
+ metrolopy/indexed.py,sha256=wFgTeCOKcZFVxUCsNhjyqWCmG3rbgk2t04m4kQ6AFew,6676
13
+ metrolopy/license.txt,sha256=hOKIMVY_W-ijJs8Q2Xo7gf2LE_r88c7eYO3-n0FYyFs,33041
14
+ metrolopy/logunit.py,sha256=pvo5j2TpR4yXcTEBKZPBht1blDFTfNRRMojV4Wgap3k,7468
15
+ metrolopy/mean.py,sha256=nCWKcm8MwjQR_kmTt2ngXSO98PNXLeGdbCqtRcsxaDE,13129
16
+ metrolopy/miscunits.py,sha256=RTxYqjyhj_oAMF7J7XbMHSeqsP1lr9IkTXFzaBpJUyc,20109
17
+ metrolopy/nonlinearunit.py,sha256=lWImZ_dJRwP_uJGFRQgWeLDEIL_7PetgrJDgExJDSuc,8394
18
+ metrolopy/nummy.py,sha256=SW9dHeqNuVL9YJV_2zaP3yZrqJM_HsPBLx_hjc-6Ipo,26073
19
+ metrolopy/offsetunit.py,sha256=lUD6nUnh9saJ52CmAuoR_Hyrn_q63Biw95jQHCZTjNw,4099
20
+ metrolopy/pmethod.py,sha256=pcMBFhP_6QzCqsHiLM_ADsoxMoTX733w038L6eaFU20,4033
21
+ metrolopy/prefixedunit.py,sha256=zvZ2HfIy_eEreBnMvkp2QLuhuTcPtrVUGMaiqUopj-0,10090
22
+ metrolopy/printing.py,sha256=I_TVH3CWcwWxm82ER44v0_IP9oPUSYHTYR5pfWRdRNo,8993
23
+ metrolopy/relunits.py,sha256=L3rvCpwWgUJa3ec-fYmf_UwfyI2DypoJnkQWjnIKgQA,2193
24
+ metrolopy/siunits.py,sha256=TppienkBMQ4ndF43ed-GE6gyKitkKiWa4oOmr75u-tU,8541
25
+ metrolopy/ummy.py,sha256=klkvVauuWRDckQLYySPFjNHk2dukDfLUs6u7X0oaFpc,74302
26
+ metrolopy/unit.py,sha256=SG7pxcNlMGzMat9UO3KfmUF72LKZHTTTfhoDMk_gf7M,61159
27
+ metrolopy/unitparser.py,sha256=nCXbA3S-0AG2QoSqvylGB01U_O_OOFLR-clxPlw75DM,9578
28
+ metrolopy/unitutils.py,sha256=vkVJK1X2QcVbspW6A0BvBw4_FcAsoij2epmJdwEuKSc,12687
29
+ metrolopy/usunits.py,sha256=FivB92A0lwCf0Ptie9z1EVKTS-v79oYaLBuqn0Jx4nA,11202
30
+ metrolopy/version.py,sha256=9w9406ip4nIuflHOFDViJTSl1oW0pDtARHiHG6lDuX4,829
31
+ metrolopy/tests/__init__.py,sha256=J9UlhmiF967vTW40zh2tBFFDOf8rOP9ep4LKaMtXkw8,199
32
+ metrolopy/tests/common.py,sha256=-AUUXiz5vuORxpYDKdUkUG9j6jLRVp5fBGRlRTKI0kE,3474
33
+ metrolopy/tests/test_complex.py,sha256=pSKujsTr8smV21_3JbPdeJxVVtgUqjPm6lOGw3-1NI0,7862
34
+ metrolopy/tests/test_create.py,sha256=k0boYIdTL0m2m5GRnf6U6kKh0QwgjN8WNCcF0wvI32E,17886
35
+ metrolopy/tests/test_gummy.py,sha256=EGIqGSBM8VmoiSx5B_0lV-cPa-a6LXVWAMdYZRlYJ1Y,23248
36
+ metrolopy/tests/test_misc.py,sha256=lGlrZyAoWaKKTjyOpS7b8Zu79shOSvX5AQAnxdkCSnA,4325
37
+ metrolopy/tests/test_operations.py,sha256=VXGA9cVQL-eGeAdfIHryF8Hf8TeN8uOlZ7VRgdSsBYQ,12944
38
+ metrolopy/tests/test_ubreakdown.py,sha256=r1IlMa2cB8iOAq0AmCOqgZ9L2WvBaZvfdml3Xhcx6Qk,13655
39
+ metrolopy-0.6.4.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
40
+ metrolopy-0.6.4.dist-info/METADATA,sha256=L0-y2dZpjBWo8cEn-cAdLZ5vthH85ZA68Ao_c2mseus,4586
41
+ metrolopy-0.6.4.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
42
+ metrolopy-0.6.4.dist-info/top_level.txt,sha256=TTY_Gf2M3yWScmUStgI-RYOc0YKVcr108GaTl4sedSo,10
43
+ metrolopy-0.6.4.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
44
+ metrolopy-0.6.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.36.2)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,43 +0,0 @@
1
- metrolopy/__init__.py,sha256=0v85v_dekYLX9ZdvqWL5G9mYAhWmGB6BjhpKDQ590O8,1567
2
- metrolopy/budget.py,sha256=NiDr4smAayGju-8FzfjpjvvkGmigjWeENYsdn-JFHzQ,51083
3
- metrolopy/codata2018.py,sha256=LBQwebsLZ_ZqPdfLYkY0770C0bQUgglvVXazZg4y8OM,37547
4
- metrolopy/constant.py,sha256=2wz1FT850DEwLW6Ai6C3golEZGBQWuTKn8MMrQMA_PY,16083
5
- metrolopy/constcom.py,sha256=ZVNaFcOVOQQ__Vm56hUyiPp4796IA7dotpDG5rBIw4w,7917
6
- metrolopy/dfunc.py,sha256=IkZ_T633Lh5cSJB3eOwyhk6d5WQT5ZrZTw3HXegqIPM,12343
7
- metrolopy/distributions.py,sha256=f0hk2CV4fj72x4Ym3pH6m2VbCn8dfuY2SWnEteluEJg,45643
8
- metrolopy/exceptions.py,sha256=tISrU8mLvqLCcan32n-wFnR2oj2-wICjbnYk0RGT0Jc,1804
9
- metrolopy/fit.py,sha256=Rad3Ig99GCrScZe0HY_XreVIU03om5BQvTcT7VWuaSU,101132
10
- metrolopy/functions.py,sha256=EIXvpqgeZ1iVFD8ygPByvWsp6EEvQ3qHBro9bX6YZqs,10051
11
- metrolopy/gummy.py,sha256=Z1St_ifN8xPxC3j4Pg6hy2H_qJfE6j0XTkcqDVyIccc,138362
12
- metrolopy/indexed.py,sha256=wFgTeCOKcZFVxUCsNhjyqWCmG3rbgk2t04m4kQ6AFew,6676
13
- metrolopy/license.txt,sha256=hOKIMVY_W-ijJs8Q2Xo7gf2LE_r88c7eYO3-n0FYyFs,33041
14
- metrolopy/logunit.py,sha256=pvo5j2TpR4yXcTEBKZPBht1blDFTfNRRMojV4Wgap3k,7468
15
- metrolopy/mean.py,sha256=dWSMz6aCHYbSeWcJmgDzzxsVxdbfm7CBfpcWlIjGUs8,13439
16
- metrolopy/miscunits.py,sha256=RTxYqjyhj_oAMF7J7XbMHSeqsP1lr9IkTXFzaBpJUyc,20109
17
- metrolopy/nonlinearunit.py,sha256=lWImZ_dJRwP_uJGFRQgWeLDEIL_7PetgrJDgExJDSuc,8394
18
- metrolopy/nummy.py,sha256=K7QkuOqUASgr8uyOoGaD5IfEz8AyrRR3Go_iNU3hxaI,25101
19
- metrolopy/offsetunit.py,sha256=lUD6nUnh9saJ52CmAuoR_Hyrn_q63Biw95jQHCZTjNw,4099
20
- metrolopy/pmethod.py,sha256=pcMBFhP_6QzCqsHiLM_ADsoxMoTX733w038L6eaFU20,4033
21
- metrolopy/prefixedunit.py,sha256=zvZ2HfIy_eEreBnMvkp2QLuhuTcPtrVUGMaiqUopj-0,10090
22
- metrolopy/printing.py,sha256=I_TVH3CWcwWxm82ER44v0_IP9oPUSYHTYR5pfWRdRNo,8993
23
- metrolopy/relunits.py,sha256=L3rvCpwWgUJa3ec-fYmf_UwfyI2DypoJnkQWjnIKgQA,2193
24
- metrolopy/siunits.py,sha256=TppienkBMQ4ndF43ed-GE6gyKitkKiWa4oOmr75u-tU,8541
25
- metrolopy/ummy.py,sha256=ZCUHALQflssckuvL7EgzrpFK0UQ6nTGHyCAQI2KgO0s,74100
26
- metrolopy/unit.py,sha256=SG7pxcNlMGzMat9UO3KfmUF72LKZHTTTfhoDMk_gf7M,61159
27
- metrolopy/unitparser.py,sha256=epGAJ0-c_1PJc8IFKhfQ82-87Dy_zdu623jaa_ZneXg,9576
28
- metrolopy/unitutils.py,sha256=vkVJK1X2QcVbspW6A0BvBw4_FcAsoij2epmJdwEuKSc,12687
29
- metrolopy/usunits.py,sha256=FivB92A0lwCf0Ptie9z1EVKTS-v79oYaLBuqn0Jx4nA,11202
30
- metrolopy/version.py,sha256=1FxykvrVOQU_g9tx9K2u2JM7cNmEKXoIhybRqrXHwAc,829
31
- metrolopy/tests/__init__.py,sha256=_MbqMt4AHkNwuf1REL3z5BbKyA1ug4mmU8zMU-5o-bw,209
32
- metrolopy/tests/common.py,sha256=-AUUXiz5vuORxpYDKdUkUG9j6jLRVp5fBGRlRTKI0kE,3474
33
- metrolopy/tests/test_complex.py,sha256=gm_YnrpBJeEemo_qt77oq-HGrfn2BY5EnhIikBAnPtY,6571
34
- metrolopy/tests/test_create.py,sha256=csThJ_QtoiGTj8NQOF4nfr-OGbmKPfaz2nNW2g1kBl4,14402
35
- metrolopy/tests/test_misc.py,sha256=KLILayU4B89KBxV26n25N1E3bTOY6uHLDAcs7Nn-Ea0,1629
36
- metrolopy/tests/test_operations.py,sha256=_-TqhEORBJ5X9a2ezXh448d3N7Uj4_zGT7MZGqago90,10649
37
- metrolopy/tests/test_ubreakdown.py,sha256=ThCAXj673SwO0pV0Sh08zKo_ZHpLfi5FsDlNW-rAeSo,11001
38
- metrolopy-0.6.2.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
39
- metrolopy-0.6.2.dist-info/METADATA,sha256=AJewrk8zhMgpBB6pFcFe_XoqVDCCfWF1k_CHmcmnbJ4,4260
40
- metrolopy-0.6.2.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
41
- metrolopy-0.6.2.dist-info/top_level.txt,sha256=TTY_Gf2M3yWScmUStgI-RYOc0YKVcr108GaTl4sedSo,10
42
- metrolopy-0.6.2.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
43
- metrolopy-0.6.2.dist-info/RECORD,,