21 lines
382 B
TOML
21 lines
382 B
TOML
[project]
|
|
name = "imap-sorter-ai"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"pydantic>=2.13.4",
|
|
"pydantic-ai-slim[openai]==2.4.0",
|
|
]
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"ruff>=0.15.20",
|
|
"ty>=0.0.56",
|
|
]
|
|
|
|
[project.scripts]
|
|
imap_sorter = "imap_sorter.main:main"
|
|
imap-sorter-preview = "imap_sorter.scripts.preview:main"
|
|
|
|
[tool.uv]
|
|
package = true
|