summaryrefslogtreecommitdiff
path: root/overlays/postfix-mta-sts-resolver/pyproject.toml
blob: b6de4e938c881011a97e1e15add9de5023faa4a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[project]
name = "postfix_mta_sts_resolver"
version = "1.5.1"
description = "Daemon which provides TLS client policy for Postfix via socketmap, according to domain MTA-STS policy"
authors = [{ name = "Vladislav Yarmak", email = "vladislav-ex-src@vm-0.com" }]
requires-python = ">=3.12"
readme = "README.md"
license = "MIT"
classifiers = [
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
]
dependencies = [
    "aiodns>=1.1.1",
    "aiohttp>=3.4.4",
    "PyYAML>=3.12",
    "redis>=4.2.0rc1",
    "uvloop>=0.11",
]

[project.scripts]
mta-sts-daemon = "postfix_mta_sts_resolver.daemon:main"
mta-sts-query = "postfix_mta_sts_resolver.__main__:main"

[build-system]
requires = ["uv_build>=0.10.9,<0.11.0"]
build-backend = "uv_build"

[tool.uv.build-backend]
module-root = "."
module-name = []