Metadata-Version: 2.4
Name: FahrenCels
Version: 0.1.0
Summary: A simple Python module for converting temperatures between Celsius and Fahrenheit.
Author: annzelly
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# FahrenCels

A simple Python module for converting temperatures between Celsius and Fahrenheit.

## Features

- `celsius_to_fahrenheit(c)` – Convert Celsius to Fahrenheit
- `fahrenheit_to_celsius(f)` – Convert Fahrenheit to Celsius

## Example

```python
from FahrenCels import celsius_to_fahrenheit, fahrenheit_to_celsius

print(celsius_to_fahrenheit(0))    # 32.0
print(fahrenheit_to_celsius(98.6)) # 37.0
