email-connect/pyproject.toml
tegwick 980b9fab44
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Implement transactional invitation mail service
2026-08-09 21:28:41 +02:00

20 lines
516 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "email-connect"
version = "0.1.0"
description = "Provider-neutral email communication and evidence service."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Coulomb" }]
dependencies = []
[project.scripts]
email-connect = "email_connect.cli:main"
email-connect-transactional = "email_connect.transactional:main"
[tool.setuptools.packages.find]
where = ["src"]