Convert to pyproject.toml

This commit is contained in:
2026-08-18 14:14:40 -04:00
parent a6a3366190
commit 05b90f1eda
4 changed files with 36 additions and 46 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DMARCReceiver"
version = "1.5"
description = "Receive DMARC reports"
authors = [
{ name = "David Baer", email = "david@amyanddavid.net" }
]
dependencies = [
"lxml",
"sqlalchemy",
"transaction",
"zope.interface",
"zope.sqlalchemy",
]
[project.scripts]
dmarc-receive = "dmarcreceiver.commands:main_cli"