Metadata-Version: 2.4
Name: loanit
Version: 0.1.0
Summary: Loan amortization schedules & export utilities
Home-page: https://github.com/yourusername/loanit
Author: Siddiqa Sajid
Author-email: your_email@example.com
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# loanit

LoanIt â€” a small Python library to generate loan amortization schedules
(term, equal amortization, interest-only, balloon, bullet) and export to CSV.

Usage:

```python
from loanit import Loan
loan = Loan(principal=100000, annual_rate=0.10, years=5, loan_type="term")
loan.export_to_csv("term.csv")

---

### 2) `LICENSE` (MIT recommended)
```text
MIT License

Copyright (c) 2025 Siddiqa Sajid

Permission is hereby granted, free of charge, to any person obtaining a copy...
(you can paste a full MIT file â€” I can generate full text if you want)
