Metadata-Version: 2.4
Name: smartcalc-utils-mhuza
Version: 0.1.0
Summary: Smart calculation utilities for finance and statistical analysis
Home-page: https://github.com/yourusername/smartcalc-utils
Author: Your Name
Author-email: Your Name <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/smartcalc-utils
Project-URL: Issues, https://github.com/yourusername/smartcalc-utils/issues
Keywords: finance,calculator,statistics,emi,compound-interest
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# smartcalc-utils

Smart calculation utilities for finance and statistical analysis.

## Features

- **Finance Tools**: EMI calculations, compound interest, and more
- **Data Statistics**: Statistical analysis and data processing utilities

## Installation

```bash
pip install smartcalc-utils
```

## Usage

### Finance Tools

```python
from smartcalc_utils.finance_tools import calculate_emi

emi = calculate_emi(principal=100000, rate=5, months=12)
print(emi)
```

### Data Statistics

```python
from smartcalc_utils.data_stats import calculate_stats

stats = calculate_stats([1, 2, 3, 4, 5])
print(stats)
```

## License

MIT License - See LICENSE file for details

## Author

Your Name - your.email@example.com
