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"