repackage properly

This commit is contained in:
2025-11-23 21:11:06 -08:00
parent f1c8895194
commit f973ead318
9 changed files with 246 additions and 36 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "actual-imap-poll"
version = "0.1.1"
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"