26 lines
595 B
TOML
26 lines
595 B
TOML
[project]
|
|
name = "actual-imap-poll"
|
|
version = "0.1.2"
|
|
description = "Poll an IMAP mailbox looking for transactions to submit to Actual Budget"
|
|
authors = [
|
|
{name = "Keenan Tims",email = "ktims@gotroot.ca"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"beautifulsoup4 (>=4.14.2,<5.0.0)",
|
|
"pydantic>=2.12.4",
|
|
"pydantic-settings>=2.12.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
actual-imap-poll = "actual_imap_poll:main"
|
|
|
|
[tool.uv.build-backend]
|
|
module-name = "actual_imap_poll"
|
|
module-root = ""
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.11,<0.10.0"]
|
|
build-backend = "uv_build"
|