30 lines
535 B
TOML
30 lines
535 B
TOML
[project]
|
|
name = "catnab"
|
|
version = "0.1.0"
|
|
description = "Automatically categorize Amazon transactions in YNAB"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
license-files = [ "LICENSE.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",
|
|
"xdg-base-dirs>=6.0.2",
|
|
"ynab>=1.9.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
catnab = "catnab:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipdb>=0.13.13",
|
|
"pytest>=8.4.2",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = true
|