Metadata-Version: 2.3
Name: tempconvert-atharv22
Version: 0.1.2
Summary: A simple temperature conversion tool
License: MIT
Author: Atharv
Author-email: atharvachaugale22@gmail.com
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown

# tempconvert

A simple Python package to convert temperature between Celsius and Fahrenheit.

## Usage

```python
from tempconvert import celsius_to_fahrenheit, fahrenheit_to_celsius

print(celsius_to_fahrenheit(0))  # 32.0
print(fahrenheit_to_celsius(212))  # 100.0

