Metadata-Version: 2.4
Name: simple-calculator-demo-0121
Version: 0.1.0
Summary: A simple calculator package for demonstration and learning
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/simple-calculator
Project-URL: Bug Tracker, https://github.com/yourusername/simple-calculator/issues
Project-URL: Documentation, https://github.com/yourusername/simple-calculator#readme
Keywords: calculator,math,educational,demo
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Developers
Classifier: Topic :: Education :: Testing
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Provides-Extra: test
Requires-Dist: pytest>=6.0; extra == "test"

# Simple Calculator

A Python package demonstrating how to create, package, and distribute a Python library.

## Features

- Basic arithmetic operations (add, subtract, multiply, divide)
- Advanced mathematical functions (factorial, fibonacci, prime checking)
- Statistics calculations (mean, median, mode)
- Calculation history tracking
- Both functional and class-based APIs

## Installation

```bash
pip install simple-calculator
