Metadata-Version: 2.1
Name: unit_system
Version: 1.0.31
Summary: SI unit system implementation enabling physical quantity math
Home-page: https://github.com/l-johnston/unit_system
Author: Lee Johnston
Author-email: lee.johnston.100@gmail.com
License: MIT
Description: [![Build Status](https://dev.azure.com/l-johnston/unit_system/_apis/build/status/l-johnston.unit_system?branchName=master)](https://dev.azure.com/l-johnston/unit_system/_build/latest?definitionId=8&branchName=master) ![Code Coverage](https://img.shields.io/azure-devops/coverage/l-johnston/unit_system/8) ![Version](https://img.shields.io/pypi/v/unit-system)
        # `unit_system`
        The unit_system package provides a way to do physical quantity math
        in Python that replicates Mathcad's unit system. The implementation
        conforms to the [SI standard](https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication811e2008.pdf).
        
        ## Installation
        ```linux
        $ pip install unit_system
        ```  
        
        ## Usage
        
        ```python
        >>> from unit_system import Quantity
        >>> V = Quantity(1, "V")
        >>> A = Quantity(1, "A")
        >>> 1*V / (1*A)
        1.0 Ω
        ```  
        
        You can load predefined units like the ones in Mathcad.
        
        ```python
        >>> from unit_system import *
        >>> 1*mΩ * 1*A
        0.001 V
        ```
        
        ## Documentation
        https://l-johnston.github.io/unit_system/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
