~gagbo/bean_mortgage

b3dbb599f7c28afe9b8409f1f149d70b50d33c11 — Gerry Agbobada 2 years ago 5b6b91f
Proper metadata
3 files changed, 11 insertions(+), 1 deletions(-)

M README.md
M bean_mortgage.py
M pyproject.toml
M README.md => README.md +4 -0
@@ 2,6 2,10 @@

Simple CLI tool to produce a mortgage schedule for beancount.

`pip install bean_mortgage`

## Example

``` sh
bean-mortgage 150000.00 120 0.0180 \
-c EUR \

M bean_mortgage.py => bean_mortgage.py +1 -1
@@ 7,7 7,7 @@ import datetime

from dateutil.relativedelta import relativedelta

__version__ = "0.1"
__version__ = "0.2"


@dataclass

M pyproject.toml => pyproject.toml +6 -0
@@ 11,6 11,12 @@ dynamic = ["version", "description"]
dependencies = [
    "python-dateutil >= 2.8"
]
readme = "README.md"
requires-python = ">=3.7,<4"

[project.scripts]
bean-mortgage = "bean_mortgage:main"

[project.urls]
Documentation = "https://git.sr.ht/~gagbo/bean_mortgage"
Source = "https://git.sr.ht/~gagbo/bean_mortgage"