Metadata-Version: 2.4
Name: nat-calculator
Version: 0.1.0
Summary: A simple Python calculator package
Author: nat
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Calculator Tools Package

A modular, reusable Python package for basic arithmetic operations, statistical calculations, temperature conversions, unit conversions, and custom error handling.

---

## 📁 Package Structure

```text
calculator_project/
│
├── calculator_tools/          # Core package directory
│   ├── __init__.py            # Package initialization & exports
│   ├── arithmetic.py          # Math operations (+, -, *, /, %)
│   ├── statistics.py          # Statistical utility functions
│   ├── converter.py           # Temperature & distance converters
│   └── exceptions.py          # Custom exception classes
│
└── main.py                    # Demonstration script
