We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbe91bf commit 5ab8572Copy full SHA for 5ab8572
.gitignore
@@ -0,0 +1,3 @@
1
+*.egg-info
2
+__pycache__/
3
+
plugin.py renamed to beancount_repete/__init__.py
pyproject.toml
@@ -0,0 +1,20 @@
+[project]
+name = "beancount_repete"
+version = "1.0"
4
+description = "A Beancount plugin that expands recurring transactions using natural language rules."
5
+authors = [
6
+ { name = "Jonathan Matthews", email = "[email protected]" }
7
+]
8
+license = "MIT"
9
+readme = "README.md"
10
+requires-python = ">=3.8"
11
12
+dependencies = [
13
+ "python-dateutil",
14
+ "recurrent",
15
+ "beancount",
16
17
18
+[build-system]
19
+requires = ["setuptools>=61.0"]
20
+build-backend = "setuptools.build_meta"
0 commit comments