/usr/lib/python3/dist-packages/measurement-2.0.1.egg-info/PKG-INFO is in python3-measurement 2.0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75  | Metadata-Version: 1.1
Name: measurement
Version: 2.0.1
Summary: Easily use and manipulate unit-aware measurements in Python
Home-page: http://github.com/coddingtonbear/python-measurement
Author: Adam Coddington
Author-email: me@adamcoddington.net
License: MIT License
Description-Content-Type: UNKNOWN
Description: .. image:: https://travis-ci.org/coddingtonbear/python-measurement.svg?branch=master
           :target: https://travis-ci.org/coddingtonbear/python-measurement
        
        Easily use and manipulate unit-aware measurement objects in Python.
        
        `django.contrib.gis.measure <https://github.com/django/django/blob/master/django/contrib/gis/measure.py>`_
        has these wonderful 'Distance' objects that can be used not only for storing a
        unit-aware distance measurement, but also for converting between different
        units and adding/subtracting these objects from one another.
        
        This module not only provides those Distance and Area measurement
        objects, but also other measurements including:
        
        - Energy
        - Speed
        - Temperature
        - Time
        - Volume
        - Weight
        
        Example:
        
        .. code-block:: python
        
           >>> from measurement.measures import Weight
           >>> weight_1 = Weight(lb=125)
           >>> weight_2 = Weight(kg=40)
           >>> added_together = weight_1 + weight_2
           >>> added_together
           Weight(lb=213.184976807)
           >>> added_together.kg  # Maybe I actually need this value in kg?
           96.699
        
        .. warning::
           Measurements are stored internally by converting them to a
           floating-point number of a (generally) reasonable SI unit.  Given that 
           floating-point numbers are very slightly lossy, you should be aware of
           any inaccuracies that this might cause.
        
           TLDR: Do not use this in
           `navigation algorithms guiding probes into the atmosphere of extraterrestrial worlds <http://en.wikipedia.org/wiki/Mars_Climate_Orbiter>`_.
        
        - Documentation for python-measurement is available an
          `ReadTheDocs <http://python-measurement.readthedocs.org/>`_.
        - Please post issues on
          `Github <https://github.com/coddingtonbear/python-measurement/issues>`_.
        - Test status available on
          `Travis-CI <https://travis-ci.org/coddingtonbear/python-measurement>`_.
        
        
        
        .. image:: https://d2weczhvl823v0.cloudfront.net/coddingtonbear/python-measurement/trend.png
           :alt: Bitdeli badge
           :target: https://bitdeli.com/free
        
        
Keywords: measurement
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
 |