tinysteady-mailer/pyproject.toml
2024-12-12 03:31:20 +01:00

19 lines
479 B
TOML

[project]
name = "tinysteady-mailer"
version = "0.1.0"
description = "A tiny and resolute mailer CLI app"
readme = "README.md"
authors = [{ name = "phil", email = "phil.dev@philome.mooo.com" }]
requires-python = ">=3.12"
dependencies = [
"aiosmtplib>=3.0.2",
"dateutils>=0.6.12",
"pydantic-settings[yaml]>=2.6.1",
"pydantic[email]>=2.10.3",
]
[project.scripts]
tinysteady-mailer = "tinysteady_mailer:main"
[dependency-groups]
dev = ["ipdb>=0.13.13", "ipython>=8.30.0"]