Initial commit

This commit is contained in:
phil 2024-12-12 02:47:55 +01:00
commit fdc8d2534a
9 changed files with 771 additions and 0 deletions

19
pyproject.toml Normal file
View file

@ -0,0 +1,19 @@
[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]
tinystead-mailer = "tinysteady_mailer:main"
[dependency-groups]
dev = ["ipdb>=0.13.13", "ipython>=8.30.0"]