diff options
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" | ||