initial commit

This commit is contained in:
2025-11-03 09:27:30 -05:00
commit 307d029648
12 changed files with 1680 additions and 0 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[project]
name = "ynab-amazon"
version = "0.1.0"
description = "Automatically categorize Amazon transactions in YNAB"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"amazon-orders>=4.0.16",
"click>=8.3.0",
"openai>=2.3.0",
"pydantic>=2.12.1",
"requests>=2.30.0",
"ynab>=1.9.0",
]
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"pytest>=8.4.2",
]
[tool.pytest.ini_options]
pythonpath = ["src"]