23 lines
508 B
TOML
23 lines
508 B
TOML
[project]
|
|
name = "mailfmt"
|
|
version = "1.0.4"
|
|
description = "Heuristic plain text email formatter."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Daniel Fichtinger", email = "daniel@ficd.sh" }
|
|
]
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
license = "ISC"
|
|
license-files = ["LICENSE"]
|
|
keywords = ["email", "formatter", "cli"]
|
|
|
|
[project.urls]
|
|
Repository = "https://git.ficd.sh/ficd/mailfmt"
|
|
|
|
[project.scripts]
|
|
mailfmt = "mailfmt:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|