Add project config for beanify

This commit is contained in:
2025-12-02 16:18:50 +10:00
parent 281f0c8c50
commit 058547c918
20 changed files with 497 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "beanify"
description = "Interactive converter for beancount accounting with modular converters"
authors = [{name="Interitio", email="cona@thewisewolf.dev"}]
readme = "README.md"
version = "0.1.0a1"
dependencies = [
"pytz",
"platformdirs"
]
requires-python = ">= 3.10"
[project.optional-dependencies]
debug = []
[project.scripts]
beanify = "beanify:run"