mailfmt/pyproject.toml

24 lines
530 B
TOML

[project]
name = "mailfmt"
version = "1.0.0"
description = "Plain text email formatter"
readme = "README.md"
authors = [
{ name = "Daniel Fichtinger", email = "daniel@ficd.ca" }
]
requires-python = ">=3.11"
dependencies = []
license = "ISC"
license-files = ["LICENSE"]
keywords = ["email", "formatter"]
[project.urls]
Repository = "https://git.sr.ht/~ficd/mailfmt"
Homepage = "https://sr.ht/~ficd/mailfmt"
[project.scripts]
mailfmt = "mailfmt:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"