Metadata-Version: 2.4
Name: smartbudget_analytics_pkg
Version: 0.1.0
Summary: Reusable budget projections & anomaly checks for Spendwise
Author: Manojkumar
License: MIT
Project-URL: Homepage, https://example.com/smartbudget
Project-URL: Changelog, https://example.com/smartbudget/changelog
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# smartbudget

Reusable finance analytics for Spendwise:

- Moving average & projection of month-end spend
- Budget status (projected vs. limit)
- Simple anomaly detection hooks

## Quickstart

```python
from smart_budgeting_pkg.analytics import BudgetInsights
bi = BudgetInsights(window=4, warn_threshold=0.1)
proj = bi.projected_monthly_spend(month_to_date=220.0, days_elapsed=7, days_in_month=30)
print(bi.budget_status(budget=800.0, projected=proj))
```
