Skip to content

Commit 5ab8572

Browse files
committed
Reformat in PyPI-compatible way
1 parent bbe91bf commit 5ab8572

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.egg-info
2+
__pycache__/
3+
File renamed without changes.

pyproject.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[project]
2+
name = "beancount_repete"
3+
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

Comments
 (0)