Files
beanify/pyproject.toml
2025-12-03 21:25:29 +10:00

25 lines
485 B
TOML

[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",
"toml",
"ttkthemes"
]
requires-python = ">= 3.10"
[project.optional-dependencies]
debug = []
[project.scripts]
beanify = "beanify:run"