19 lines
478 B
TOML
19 lines
478 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]
|
|
tinystead-mailer = "tinysteady_mailer:main"
|
|
|
|
[dependency-groups]
|
|
dev = ["ipdb>=0.13.13", "ipython>=8.30.0"]
|