Metadata-Version: 2.4
Name: realestate-tvm
Version: 0.2.0
Summary: Time value of money helpers for real estate, complementing numpy_financial.
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://example.com/realestate-tvm
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: numpy-financial

# realestate-tvm

Time value of money helper functions that complement `numpy_financial`,
designed for real estate and finance courses.

Provides:

- `compound(pv, i, n)`: multi-period compounding, FV of a lump sum
- `eay(fv, pv, n)`: effective annual yield from PV and FV
- `enar_from_eay(eay, m)`: convert Effective Annual Yield to an Equivalent Nominal Annual Rate with m compounds per year
- `eay_from_enar(enar, m)`: convert a nominal annual rate with m compounds per year to an Effective Annual Yield
- `annuity_value(pmt, i, n)`: FV of an ordinary annuity
