tinysteady-mailer/pyproject.toml

53 lines
1.3 KiB
TOML
Raw Normal View History

2024-12-12 02:47:55 +01:00
[project]
name = "tinysteady-mailer"
description = "A tiny and resolute mailer CLI app"
2025-03-16 18:25:44 +01:00
dynamic = ["version"]
2024-12-12 02:47:55 +01:00
readme = "README.md"
2024-12-12 05:08:52 +01:00
license = { text = "MIT License" }
2024-12-12 02:47:55 +01:00
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",
]
2024-12-12 05:08:52 +01:00
classifiers = [
"Topic :: Communications :: Email",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://code.philo.ydns.eu/philorg/tinysteady-mailer"
Repository = "https://code.philo.ydns.eu/philorg/tinysteady-mailer.git"
Issues = "https://code.philo.ydns.eu/philorg/tinysteady-mailer/issues"
2024-12-12 02:47:55 +01:00
[project.scripts]
2024-12-12 03:31:20 +01:00
tinysteady-mailer = "tinysteady_mailer:main"
2024-12-12 02:47:55 +01:00
[dependency-groups]
2025-03-16 18:25:44 +01:00
dev = ["dunamai>=1.23.0", "ipdb>=0.13.13", "ipython>=8.30.0"]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.hatch.build.targets.wheel]
packages = ["src/tinysteady_mailer"]
package = true
[tool.uv-dynamic-versioning]
style = "semver"
[tool.uv]
package = true
[tool.black]
line-length = 98