Metadata-Version: 2.1
Name: temperaturePy
Version: 1.0.0
Summary: Simple Temperature conversion library
Home-page: https://github.com/Harry-Lees/TemperaturePy
Author: Harry Lees
Author-email: harry.lees@gmail.com
License: MIT
Description: # TemperaturePy
        ![Workflow](https://github.com/Harry-Lees/TemperaturePy/actions/workflows/workflow.yaml/badge.svg)
        
        A Simple temperature conversion library for Python 3.
        
        ## Examples
        
        Easy Conversions
        ```python
        >> from temperature import Temperature
        >> celsius: int = 25
        >> kelvin: Temperature = Temperature.ctok(celsius)
        >> kelvin
        298.15
        ```
        
        Simple maths and comparisons built in
        ```python
        >> from temperature import Temperature
        >> start_temp: Temperature = Temperature(150)
        >> end_temp: Temperature = Temperature(100)
        >> delta_t = start_temp - end_temp
        >> delta_t
        Temperature(kelvin=50, celsius=-223.15, farenheit=-369.67, rankine=90.0)
        ```
        
        Clamped to real bounds
        ```python
        >> from temperature import Temperature
        >> impossible = Temperature(-1)
        ValueError: Temperature cannot be below Absolute Zero
        ```
        
        ## License
        
        This project is released under the MIT license
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
