diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2023-04-10 20:56:16 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2023-04-10 20:56:16 +0200 |
commit | c0e3d0e72d9d636728a5171511e3ce1003203567 (patch) | |
tree | c75fbcfe4802c48fd5162792f38475d74d2cad57 /overlays/postfix-mta-sts-resolver/pyproject.toml | |
parent | 24207674f36e900fd2aa51787cb70756413962c2 (diff) | |
download | nixos-c0e3d0e72d9d636728a5171511e3ce1003203567.tar nixos-c0e3d0e72d9d636728a5171511e3ce1003203567.tar.gz nixos-c0e3d0e72d9d636728a5171511e3ce1003203567.tar.bz2 nixos-c0e3d0e72d9d636728a5171511e3ce1003203567.tar.xz nixos-c0e3d0e72d9d636728a5171511e3ce1003203567.zip |
bump
Diffstat (limited to 'overlays/postfix-mta-sts-resolver/pyproject.toml')
-rw-r--r-- | overlays/postfix-mta-sts-resolver/pyproject.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/overlays/postfix-mta-sts-resolver/pyproject.toml b/overlays/postfix-mta-sts-resolver/pyproject.toml new file mode 100644 index 00000000..50957a64 --- /dev/null +++ b/overlays/postfix-mta-sts-resolver/pyproject.toml | |||
@@ -0,0 +1,24 @@ | |||
1 | [tool.poetry] | ||
2 | name = "postfix_mta_sts_resolver" | ||
3 | version = "1.3.0" | ||
4 | authors = ["Vladislav Yarmak <vladislav-ex-src@vm-0.com>"] | ||
5 | description = "Daemon which provides TLS client policy for Postfix via socketmap, according to domain MTA-STS policy" | ||
6 | readme = "README.md" | ||
7 | license = "MIT" | ||
8 | |||
9 | [tool.poetry.scripts] | ||
10 | mta-sts-daemon = "postfix_mta_sts_resolver.daemon:main" | ||
11 | mta-sts-query = "postfix_mta_sts_resolver.__main__:main" | ||
12 | |||
13 | [tool.poetry.dependencies] | ||
14 | python = ">=3.7,<3.11.0" | ||
15 | aiodns = "^3.0.0" | ||
16 | aiohttp = "^3.8.4" | ||
17 | PyYAML = "^6.0" | ||
18 | |||
19 | redis = "^4.5.4" | ||
20 | uvloop = "^0.17.0" | ||
21 | |||
22 | [build-system] | ||
23 | requires = ["poetry-core>=1.0.0"] | ||
24 | build-backend = "poetry.core.masonry.api" | ||